aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout
diff options
context:
space:
mode:
authorHalzyn2015-06-10 13:31:24 +0200
committerHalzyn2015-06-10 13:31:24 +0200
commite860c0457df4868108e8eff8e3587ab4891287ab (patch)
tree8c6a040bf98de7d2da72184b6eb446c2fc1e6b54 /app/src/main/res/layout
parentFix ConcurrentModificationException; cleaner drawer layout (diff)
Tutorial done
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r--app/src/main/res/layout/walkthrough_single_view.xml21
1 files changed, 18 insertions, 3 deletions
diff --git a/app/src/main/res/layout/walkthrough_single_view.xml b/app/src/main/res/layout/walkthrough_single_view.xml
index e8ef067..7fa3bdd 100644
--- a/app/src/main/res/layout/walkthrough_single_view.xml
+++ b/app/src/main/res/layout/walkthrough_single_view.xml
@@ -1,5 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
-<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/image_view"
+<LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
android:layout_width="fill_parent"
- android:layout_height="fill_parent" /> \ No newline at end of file
+ android:layout_height="fill_parent">
+
+ <ImageView xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/image_view"
+ android:layout_gravity="center"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content" />
+
+ <TextView
+ android:id="@+id/text_view"
+ android:textAlignment="center"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content" />
+
+</LinearLayout>