summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/grid_item.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/grid_item.xml')
-rw-r--r--app/src/main/res/layout/grid_item.xml33
1 files changed, 33 insertions, 0 deletions
diff --git a/app/src/main/res/layout/grid_item.xml b/app/src/main/res/layout/grid_item.xml
new file mode 100644
index 0000000..1d8b860
--- /dev/null
+++ b/app/src/main/res/layout/grid_item.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginTop="5dp"
+ android:orientation="vertical"
+ android:padding="5dp"
+ android:clickable="false"
+ android:focusable="false">
+
+ <ImageView
+ android:id="@+id/thumbimage"
+ android:layout_width="100dp"
+ android:layout_height="100dp"
+ android:clickable="false"
+ android:focusable="false"
+ android:focusableInTouchMode="false">
+ </ImageView>
+
+ <TextView
+ android:id="@+id/thumbtitle"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:layout_marginTop="5dp"
+ android:gravity="center"
+ android:textSize="12sp"
+ android:clickable="false"
+ android:focusable="false">
+ </TextView>
+
+</LinearLayout> \ No newline at end of file