summaryrefslogtreecommitdiff
path: root/tutorials/android-tutorial-1/res/layout/main.xml
diff options
context:
space:
mode:
Diffstat (limited to 'tutorials/android-tutorial-1/res/layout/main.xml')
-rw-r--r--tutorials/android-tutorial-1/res/layout/main.xml14
1 files changed, 14 insertions, 0 deletions
diff --git a/tutorials/android-tutorial-1/res/layout/main.xml b/tutorials/android-tutorial-1/res/layout/main.xml
new file mode 100644
index 0000000..5cf846b
--- /dev/null
+++ b/tutorials/android-tutorial-1/res/layout/main.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical" >
+
+ <TextView
+ android:id="@+id/textview_info"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:gravity="center_vertical|center_horizontal"
+ android:textAppearance="?android:attr/textAppearanceLarge" />
+
+</LinearLayout> \ No newline at end of file