summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/image_gallery_item.xml
diff options
context:
space:
mode:
authorJoe Robinson <joe@lc8n.com>2019-04-20 17:45:19 +0200
committerJoe Robinson <joe@lc8n.com>2019-04-20 17:45:19 +0200
commit3075e6acb5c29434b2d7be0c6ad7747a6358f045 (patch)
tree214d37dfb9c7d2f4aa0dc07cb109f66e4165cf74 /app/src/main/res/layout/image_gallery_item.xml
parent9d430209d39d0e68f6311adfff9d476c8856f662 (diff)
Added Gallery View
Diffstat (limited to 'app/src/main/res/layout/image_gallery_item.xml')
-rw-r--r--app/src/main/res/layout/image_gallery_item.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/src/main/res/layout/image_gallery_item.xml b/app/src/main/res/layout/image_gallery_item.xml
new file mode 100644
index 0000000..bd2fc7a
--- /dev/null
+++ b/app/src/main/res/layout/image_gallery_item.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="utf-8"?>
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content">
+<com.android.volley.toolbox.NetworkImageView
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/gallery_thumbnail"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"/>
+ <TextView
+ android:id="@+id/gallery_title"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_below="@id/gallery_thumbnail"
+ android:textSize="10dp"/>
+</RelativeLayout> \ No newline at end of file