summaryrefslogtreecommitdiff
path: root/org.fox.ttrss/src/main/res/layout/fragment_feeds.xml
blob: 2d8d963b733e7c0bb1b203af73b2766fbde0c84f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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" >

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