blob: 516c25a3997ab909ddf1789736012a4ca7e64aa6 [file] [log] [blame]
Alexander Afanasyevaf2b3562015-03-11 13:58:59 -07001<?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 Yeo215fc2a2015-03-17 22:35:04 -070010 style="@style/default_dialog_margin"
Alexander Afanasyevaf2b3562015-03-11 13:58:59 -070011 android:textAppearance="?android:attr/textAppearanceMedium"
Haitao Zhang0c79a9c2016-11-21 00:38:51 -080012 android:text="@string/dialog_add_face_edit_title"
Alexander Afanasyevaf2b3562015-03-11 13:58:59 -070013 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 Yeo215fc2a2015-03-17 22:35:04 -070019 style="@style/default_dialog_margin"
Haitao Zhang0c79a9c2016-11-21 00:38:51 -080020 android:hint="@string/dialog_add_route_edit_face_uri_hint"
Alexander Afanasyevaf2b3562015-03-11 13:58:59 -070021 android:inputType="text"
22 android:focusable="true"
23 android:focusableInTouchMode="true"
24 android:selectAllOnFocus="true">
25 <requestFocus />
26 </EditText>
27
Haitao Zhang0c79a9c2016-11-21 00:38:51 -080028 <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 Afanasyevaf2b3562015-03-11 13:58:59 -070036</LinearLayout>