summaryrefslogtreecommitdiff
path: root/org.fox.ttcomics/src/main/res/layout/fragment_comics_list.xml
blob: 4fb85441d06d88893144efa809c87acdc7e3196b (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/FrameLayout4"
    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" >
        <GridView
            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" >
        </GridView>
    </android.support.v4.widget.SwipeRefreshLayout>

    <!-- <LinearLayout
        android:id="@+id/no_comics"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="center"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:text="@string/error_no_comic_archives_found_" />
    </LinearLayout> -->

    <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>