gui: Adding Face list/create/destroy operations
Change-Id: Ic27f110bb31048048136c76bfb243f56405218d1
Refs: #2430
diff --git a/app/src/main/res/layout/create_face.xml b/app/src/main/res/layout/create_face.xml
new file mode 100644
index 0000000..6588dcc
--- /dev/null
+++ b/app/src/main/res/layout/create_face.xml
@@ -0,0 +1,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/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/dialog_margin"
+ android:hint="Face URI"
+ android:inputType="text"
+ android:focusable="true"
+ android:focusableInTouchMode="true"
+ android:selectAllOnFocus="true">
+ <requestFocus />
+ </EditText>
+
+</LinearLayout>
\ No newline at end of file