aboutsummaryrefslogtreecommitdiffstats
path: root/iget_android/app/src/main/res/layout/dialog_create_face.xml
blob: 02d40a62ce409b0c87ec9912acc19098e75da692 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="match_parent"
              android:layout_height="wrap_content">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        style="@style/default_dialog_margin"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:text="Enter FaceUri for the remote NDN daemon"
        android:layout_gravity="center_horizontal"/>

    <EditText
        android:id="@+id/faceUri"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        style="@style/default_dialog_margin"
        android:hint="Face URI"
        android:inputType="text"
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:selectAllOnFocus="true">
        <requestFocus />
     </EditText>

</LinearLayout>