]> Joshua Wise's Git repositories - dumload.git/blame_incremental - res/layout/passwd.xml
Fix stray DOS line endings
[dumload.git] / res / layout / passwd.xml
... / ...
CommitLineData
1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:orientation="vertical"
4 android:layout_width="fill_parent"
5 android:layout_height="fill_parent"
6 android:padding="10dp"
7 >
8<TextView
9 android:id="@+id/prompt"
10 android:layout_width="fill_parent"
11 android:layout_height="wrap_content"
12 />
13<EditText
14 android:id="@+id/entry"
15 android:layout_width="fill_parent"
16 android:layout_height="wrap_content"
17 android:background="@android:drawable/editbox_background"
18 android:password="true"
19 />
20<LinearLayout
21 android:orientation="horizontal"
22 android:layout_width="fill_parent"
23 android:layout_height="wrap_content"
24 >
25<Button
26 android:id="@+id/ok"
27 android:layout_width="wrap_content"
28 android:layout_height="wrap_content"
29 android:text="OK"
30 />
31<Button
32 android:id="@+id/cancel"
33 android:layout_width="wrap_content"
34 android:layout_height="wrap_content"
35 android:text="Cancel"
36 />
37</LinearLayout>
38</LinearLayout>
This page took 0.022554 seconds and 4 git commands to generate.