Index: samples/android/res/layout/main.xml |
diff --git a/samples/android/res/layout/main.xml b/samples/android/res/layout/main.xml |
new file mode 100644 |
index 0000000000000000000000000000000000000000..63e5cc7864c203ecc3f809131477635eda4f6587 |
--- /dev/null |
+++ b/samples/android/res/layout/main.xml |
@@ -0,0 +1,23 @@ |
+<?xml version="1.0" encoding="utf-8"?> |
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
+ android:orientation="vertical" |
+ android:layout_width="fill_parent" |
+ android:layout_height="fill_parent" |
+ > |
+<EditText android:id="@+id/edit_message" |
+ android:layout_width="match_parent" |
+ android:layout_height="wrap_content" |
+ /> |
+<Button |
+ android:layout_width="wrap_content" |
+ android:layout_height="wrap_content" |
+ android:onClick="sendMessage" |
+ android:text="Send" /> |
+ <TextView android:id="@+id/output" |
+ android:layout_weight="1" |
+ android:layout_width="fill_parent" |
+ android:layout_height="fill_parent" |
+ android:hint="Result will show up here..." |
+ /> |
+</LinearLayout> |
+ |