comparison res/layout/act_wizard.xml @ 0:0ce5cc452d02

initial version
author Carl Byington <carl@five-ten-sg.com>
date Thu, 22 May 2014 10:41:19 -0700
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:0ce5cc452d02
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3 /*
4 * ConnectBot: simple, powerful, open-source SSH client for Android
5 * Copyright 2007 Kenny Root, Jeffrey Sharkey
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 */
19 -->
20
21 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
22 android:orientation="vertical"
23 android:layout_width="fill_parent"
24 android:layout_height="fill_parent"
25 android:gravity="right"
26 >
27
28 <ViewFlipper
29 android:id="@+id/wizard_flipper"
30 android:layout_width="fill_parent"
31 android:layout_height="0dip"
32 android:layout_weight="1"
33 />
34
35 <LinearLayout
36 android:orientation="horizontal"
37 android:layout_width="wrap_content"
38 android:layout_height="wrap_content"
39 android:padding="5dip"
40 >
41
42 <Button
43 android:id="@+id/action_prev"
44 android:layout_width="120dip"
45 android:layout_height="wrap_content"
46 android:drawableLeft="@drawable/ic_btn_back"
47 android:text="Cancel"
48 android:gravity="center"
49 />
50
51 <Button
52 android:id="@+id/action_next"
53 android:layout_width="120dip"
54 android:layout_height="wrap_content"
55 android:drawableRight="@drawable/ic_btn_next"
56 android:text="Agree"
57 android:gravity="center"
58 />
59
60 </LinearLayout>
61
62 </LinearLayout>