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" |
Haitao Zhang | 0c79a9c | 2016-11-21 00:38:51 -0800 | [diff] [blame^] | 12 | android:text="@string/dialog_add_face_edit_title" |
Alexander Afanasyev | af2b356 | 2015-03-11 13:58:59 -0700 | [diff] [blame] | 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" |
Haitao Zhang | 0c79a9c | 2016-11-21 00:38:51 -0800 | [diff] [blame^] | 20 | android:hint="@string/dialog_add_route_edit_face_uri_hint" |
Alexander Afanasyev | af2b356 | 2015-03-11 13:58:59 -0700 | [diff] [blame] | 21 | android:inputType="text" |
| 22 | android:focusable="true" |
| 23 | android:focusableInTouchMode="true" |
| 24 | android:selectAllOnFocus="true"> |
| 25 | <requestFocus /> |
| 26 | </EditText> |
| 27 | |
Haitao Zhang | 0c79a9c | 2016-11-21 00:38:51 -0800 | [diff] [blame^] | 28 | <CheckBox |
| 29 | android:layout_width="wrap_content" |
| 30 | android:layout_height="wrap_content" |
| 31 | android:text="@string/dialog_add_route_or_face_as_permanent" |
| 32 | android:id="@+id/permanent" |
| 33 | android:layout_gravity="center_horizontal" |
| 34 | android:checked="false" /> |
| 35 | |
Alexander Afanasyev | af2b356 | 2015-03-11 13:58:59 -0700 | [diff] [blame] | 36 | </LinearLayout> |