diff options
Diffstat (limited to 'app/src/main/res/layout')
-rwxr-xr-x | app/src/main/res/layout/item_feeditem.xml | 1 | ||||
-rw-r--r-- | app/src/main/res/layout/walkthrough_single_view.xml | 21 |
2 files changed, 18 insertions, 4 deletions
diff --git a/app/src/main/res/layout/item_feeditem.xml b/app/src/main/res/layout/item_feeditem.xml index 1ecd1c5..ff0e276 100755 --- a/app/src/main/res/layout/item_feeditem.xml +++ b/app/src/main/res/layout/item_feeditem.xml @@ -20,7 +20,6 @@ android:layout_height="match_parent" android:orientation="vertical" android:padding="8dp"> - <TextView android:id="@+id/feeditem_title" android:layout_width="fill_parent" android:layout_height="wrap_content" 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> |