Alexander Afanasyev | af2b356 | 2015-03-11 13:58:59 -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" |
Ivan Yeo | 215fc2a | 2015-03-17 22:35:04 -0700 | [diff] [blame^] | 10 | style="@style/default_dialog_margin" |
Alexander Afanasyev | af2b356 | 2015-03-11 13:58:59 -0700 | [diff] [blame] | 11 | android:textAppearance="?android:attr/textAppearanceMedium" |
| 12 | android:text="Enter FaceUri for the remote NDN daemon" |
| 13 | android:layout_gravity="center_horizontal"/> |
| 14 | |
| 15 | <EditText |
| 16 | android:id="@+id/faceUri" |
| 17 | android:layout_width="match_parent" |
| 18 | android:layout_height="wrap_content" |
Ivan Yeo | 215fc2a | 2015-03-17 22:35:04 -0700 | [diff] [blame^] | 19 | style="@style/default_dialog_margin" |
Alexander Afanasyev | af2b356 | 2015-03-11 13:58:59 -0700 | [diff] [blame] | 20 | android:hint="Face URI" |
| 21 | android:inputType="text" |
| 22 | android:focusable="true" |
| 23 | android:focusableInTouchMode="true" |
| 24 | android:selectAllOnFocus="true"> |
| 25 | <requestFocus /> |
| 26 | </EditText> |
| 27 | |
| 28 | </LinearLayout> |