summaryrefslogtreecommitdiff
path: root/org.fox.ttcomics/src/main/res/layout/fragment_comics_grid.xml
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2015-06-10 18:32:18 +0300
committerAndrew Dolgov <[email protected]>2015-06-10 18:32:18 +0300
commit4cd46001d98f26aafe4a2e9f611abe11569e25b9 (patch)
treed6cc115f2bd5e15df86603d3414d1189112ef283 /org.fox.ttcomics/src/main/res/layout/fragment_comics_grid.xml
parentb179d6fb38428d5956dd76b009d74a042cc3f3e8 (diff)
refactor some code/layout names
Diffstat (limited to 'org.fox.ttcomics/src/main/res/layout/fragment_comics_grid.xml')
-rw-r--r--org.fox.ttcomics/src/main/res/layout/fragment_comics_grid.xml31
1 files changed, 31 insertions, 0 deletions
diff --git a/org.fox.ttcomics/src/main/res/layout/fragment_comics_grid.xml b/org.fox.ttcomics/src/main/res/layout/fragment_comics_grid.xml
new file mode 100644
index 0000000..651ad65
--- /dev/null
+++ b/org.fox.ttcomics/src/main/res/layout/fragment_comics_grid.xml
@@ -0,0 +1,31 @@
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:app="http://schemas.android.com/apk/res-auto"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent">
+
+ <android.support.v4.widget.SwipeRefreshLayout
+ android:id="@+id/comics_swipe_container"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent" >
+ <jp.co.recruit_mp.android.widget.HeaderFooterGridView
+ android:id="@+id/comics_grid"
+ android:drawSelectorOnTop="true"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:columnWidth="160dp"
+ android:numColumns="auto_fit" />
+ </android.support.v4.widget.SwipeRefreshLayout>
+
+ <com.shamanland.fab.FloatingActionButton
+ android:id="@+id/fab"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="bottom|right"
+ android:layout_marginRight="16dp"
+ android:layout_marginBottom="20dp"
+ app:floatingActionButtonColor="?colorAccent"
+ android:src="@drawable/ic_refresh"
+ />
+
+
+</FrameLayout> \ No newline at end of file