summaryrefslogtreecommitdiff
path: root/org.fox.ttrss/src/main/res/layout/fragment_headlines.xml
blob: 647afce859632d447fbb9805afe09b46c737b663 (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
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    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>

	<com.google.android.material.floatingactionbutton.FloatingActionButton
		android:id="@+id/headlines_fab"
		app:layout_anchor="@id/headlines_fragment"
		android:layout_width="wrap_content"
		android:layout_height="wrap_content"
		android:layout_gravity="end|bottom"
		android:src="@drawable/ic_refresh"
		android:layout_marginBottom="72dp"
		android:layout_marginRight="16dp" />

</FrameLayout>