blob: 6588dcc48cee82286f048ce1346247605fb5801d [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"
10 style="@style/dialog_margin"
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"
19 style="@style/dialog_margin"
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>