summaryrefslogtreecommitdiff
path: root/org.fox.ttcomics/src/main/res/layout/fragment_comics_grid.xml
blob: 7e341696e4c3a4f8cc5a6e370980a8f73a5ccf46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <androidx.swiperefreshlayout.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" />
    </androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
</FrameLayout>