summaryrefslogtreecommitdiff
path: root/org.fox.ttcomics/src/main/res/layout/fragment_comics_grid.xml
blob: 651ad65157832327d67fedbcc81aae757664f158 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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>