tt-rss-android/org.fox.ttrss/src/main/res/layout/fragment_feeds.xml
2015-06-10 19:24:24 +03:00

22 lines
832 B
XML

<?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>
</RelativeLayout>