diff options
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r-- | app/src/main/res/layout/walkthrough_single_view.xml | 21 |
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> |