summaryrefslogtreecommitdiff
path: root/org.fox.ttrss/src/main/res/layout/feeds_fragment.xml
blob: 49882d8f98861834487c88c1e300f911dd711fbc (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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/feeds_fragment"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <android.support.v4.widget.SwipeRefreshLayout 
    	android:id="@+id/feeds_swipe_container"
    	android:layout_width="match_parent"
    	android:layout_height="match_parent">

        <ListView
            android:id="@+id/feeds"
            android:dividerHeight="0dp"
            android:divider="@null"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_alignParentLeft="true"
            android:layout_alignParentStart="true">
        </ListView>
    </android.support.v4.widget.SwipeRefreshLayout>

    <TextView
        android:id="@+id/no_feeds"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:text="@string/no_feeds"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:visibility="gone" >
    </TextView>

    <!-- <ProgressBar
        style="?android:attr/progressBarStyleHorizontal"
        android:visibility="invisible"
        android:indeterminate="true"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/feeds_loading_bar"
        android:layout_gravity="center" /> -->


</RelativeLayout>