summaryrefslogtreecommitdiff
path: root/org.fox.ttrss/src/main/res/layout/fragment_headlines.xml
blob: 9f09290f4cfbe41c5872aeff512b4018990cf3a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
	android:id="@+id/headlines_fragment"
	android:background="?android:colorBackground"
	android:layout_width="fill_parent"
	android:layout_height="fill_parent">

    <androidx.swiperefreshlayout.widget.SwipeRefreshLayout
    	android:id="@+id/headlines_swipe_container"
    	android:layout_width="match_parent"
    	android:layout_height="match_parent" >
    
	   <org.fox.ttrss.util.ContextMenuRecyclerView
	       android:id="@+id/headlines_list"
           android:drawSelectorOnTop="true"
		   android:scrollbars="vertical"
	       android:layout_width="match_parent"
	       android:layout_height="match_parent" />
	</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>

</FrameLayout>