diff options
author | Joe Robinson <joe@lc8n.com> | 2019-04-20 19:56:15 +0200 |
---|---|---|
committer | Joe Robinson <joe@lc8n.com> | 2019-04-20 19:56:15 +0200 |
commit | 8322d7cf510b22ee20d310013ec71dd4f39442bb (patch) | |
tree | 2f2366ff083dcbe739d478f704a5d4e91b292039 /app/src/main/res/layout/pager_item.xml | |
parent | 3075e6acb5c29434b2d7be0c6ad7747a6358f045 (diff) |
Added Image Pager
Diffstat (limited to 'app/src/main/res/layout/pager_item.xml')
-rw-r--r-- | app/src/main/res/layout/pager_item.xml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app/src/main/res/layout/pager_item.xml b/app/src/main/res/layout/pager_item.xml new file mode 100644 index 0000000..d948c64 --- /dev/null +++ b/app/src/main/res/layout/pager_item.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8"?> +<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/pager_item" + android:layout_width="match_parent" + android:layout_height="match_parent"> + <TextView + android:id="@+id/pager_title" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_below="@id/pager_image" + android:textSize="20dp"/> + <com.android.volley.toolbox.NetworkImageView + xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/pager_image" + android:layout_width="match_parent" + android:layout_height="match_parent"/> + +</FrameLayout>
\ No newline at end of file |