Alexander Afanasyev | 2a78ac6 | 2015-03-15 14:02:34 -0700 | [diff] [blame] | 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="match_parent" |
| 5 | android:layout_height="wrap_content"> |
| 6 | |
| 7 | <TextView |
| 8 | android:layout_width="wrap_content" |
| 9 | android:layout_height="wrap_content" |
| 10 | style="@style/dialog_margin" |
| 11 | android:textAppearance="?android:attr/textAppearanceMedium" |
| 12 | android:text="Enter prefix and FaceUri to register with NDN daemon" |
| 13 | android:layout_gravity="center_horizontal"/> |
| 14 | |
| 15 | <EditText |
| 16 | android:id="@+id/prefix" |
| 17 | android:layout_width="match_parent" |
| 18 | android:layout_height="wrap_content" |
| 19 | style="@style/dialog_margin" |
| 20 | android:hint="Prefix" |
| 21 | android:inputType="text" |
| 22 | android:focusable="true" |
| 23 | android:focusableInTouchMode="true" |
| 24 | android:selectAllOnFocus="true"> |
| 25 | <requestFocus /> |
| 26 | </EditText> |
| 27 | |
| 28 | <EditText |
| 29 | android:id="@+id/faceUri" |
| 30 | android:layout_width="match_parent" |
| 31 | android:layout_height="wrap_content" |
| 32 | style="@style/dialog_margin" |
| 33 | android:hint="Face URI" |
| 34 | android:inputType="text" |
| 35 | android:focusable="true" |
| 36 | android:focusableInTouchMode="true" |
| 37 | android:selectAllOnFocus="true"> |
| 38 | </EditText> |
| 39 | |
| 40 | </LinearLayout> |