summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/fragment_home_screen.xml
diff options
context:
space:
mode:
authorJoe Robinson <joe@lc8n.com>2014-08-03 03:51:13 +0100
committerJoe Robinson <joe@lc8n.com>2014-08-03 03:51:13 +0100
commit3398c580fd742d785ce5cc90ba2d1c720874fb3f (patch)
tree23268d04efd62f0fb2954c76ecee63dcee7fd464 /app/src/main/res/layout/fragment_home_screen.xml
parent848cfa51b7de694fbcef75b41818b33ed81b7359 (diff)
Created the home screen with a grid of images from blaupload
Diffstat (limited to 'app/src/main/res/layout/fragment_home_screen.xml')
-rw-r--r--app/src/main/res/layout/fragment_home_screen.xml19
1 files changed, 19 insertions, 0 deletions
diff --git a/app/src/main/res/layout/fragment_home_screen.xml b/app/src/main/res/layout/fragment_home_screen.xml
index 3f50a40..884e98a 100644
--- a/app/src/main/res/layout/fragment_home_screen.xml
+++ b/app/src/main/res/layout/fragment_home_screen.xml
@@ -13,4 +13,23 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:textAppearance="@android:style/TextAppearance.DeviceDefault.Medium"
+ android:text="Recent Images"
+ android:id="@+id/textView"
+ android:layout_alignParentTop="true"
+ android:layout_alignParentLeft="true"
+ android:layout_alignParentStart="true" />
+
+ <GridView
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:numColumns="3"
+ android:id="@+id/gridView"
+ android:layout_below="@+id/section_label"
+ android:layout_alignParentLeft="true"
+ android:layout_alignParentStart="true" />
+
</RelativeLayout>