diff options
author | Joe Robinson <joe@lc8n.com> | 2014-08-03 03:51:13 +0100 |
---|---|---|
committer | Joe Robinson <joe@lc8n.com> | 2014-08-03 03:51:13 +0100 |
commit | 3398c580fd742d785ce5cc90ba2d1c720874fb3f (patch) | |
tree | 23268d04efd62f0fb2954c76ecee63dcee7fd464 /app/src/main/res/layout/grid_item.xml | |
parent | 848cfa51b7de694fbcef75b41818b33ed81b7359 (diff) |
Created the home screen with a grid of images from blaupload
Diffstat (limited to 'app/src/main/res/layout/grid_item.xml')
-rw-r--r-- | app/src/main/res/layout/grid_item.xml | 33 |
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 |