blob: 5d8630d37adddf875392da33682b1232f25abdb6 [file] [log] [blame]
Alexander Afanasyev2a78ac62015-03-15 14:02:34 -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 Afanasyev2a78ac62015-03-15 14:02:34 -070011 android:textAppearance="?android:attr/textAppearanceMedium"
Haitao Zhang0c79a9c2016-11-21 00:38:51 -080012 android:text="@string/dialog_add_route_edit_title"
Alexander Afanasyev2a78ac62015-03-15 14:02:34 -070013 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"
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_prefix_hint"
Alexander Afanasyev2a78ac62015-03-15 14:02:34 -070021 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"
Ivan Yeo215fc2a2015-03-17 22:35:04 -070032 style="@style/default_dialog_margin"
Haitao Zhang0c79a9c2016-11-21 00:38:51 -080033 android:hint="@string/dialog_add_route_edit_face_uri_hint"
Alexander Afanasyev2a78ac62015-03-15 14:02:34 -070034 android:inputType="text"
35 android:focusable="true"
36 android:focusableInTouchMode="true"
37 android:selectAllOnFocus="true">
38 </EditText>
39
Haitao Zhang0c79a9c2016-11-21 00:38:51 -080040 <CheckBox
41 android:layout_width="wrap_content"
42 android:layout_height="wrap_content"
43 android:text="@string/dialog_add_route_or_face_as_permanent"
44 android:id="@+id/permanent"
45 android:layout_gravity="center_horizontal" />
46
Alexander Afanasyev2a78ac62015-03-15 14:02:34 -070047</LinearLayout>