]>
Commit | Line | Data |
---|---|---|
1 | <?xml version="1.0" encoding="utf-8"?>\r | |
2 | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"\r | |
3 | android:orientation="vertical"\r | |
4 | android:layout_width="fill_parent"\r | |
5 | android:layout_height="fill_parent"\r | |
6 | android:padding="10dp"\r | |
7 | >\r | |
8 | <TextView \r | |
9 | android:id="@+id/prompt"\r | |
10 | android:layout_width="fill_parent" \r | |
11 | android:layout_height="wrap_content" \r | |
12 | />\r | |
13 | <EditText\r | |
14 | android:id="@+id/entry"\r | |
15 | android:layout_width="fill_parent"\r | |
16 | android:layout_height="wrap_content"\r | |
17 | android:background="@android:drawable/editbox_background"\r | |
18 | android:password="true"\r | |
19 | />\r | |
20 | <LinearLayout\r | |
21 | android:orientation="horizontal"\r | |
22 | android:layout_width="fill_parent"\r | |
23 | android:layout_height="wrap_content"\r | |
24 | >\r | |
25 | <Button\r | |
26 | android:id="@+id/ok"\r | |
27 | android:layout_width="wrap_content"\r | |
28 | android:layout_height="wrap_content"\r | |
29 | android:text="OK"\r | |
30 | />\r | |
31 | <Button\r | |
32 | android:id="@+id/cancel"\r | |
33 | android:layout_width="wrap_content"\r | |
34 | android:layout_height="wrap_content"\r | |
35 | android:text="Cancel"\r | |
36 | />\r | |
37 | </LinearLayout>\r | |
38 | </LinearLayout>\r |