2020-07-31 15:53:30 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
2020-09-03 15:15:53 +00:00
|
|
|
tools:context=".fragments.SavedViewerFragment">
|
2020-07-31 15:53:30 +00:00
|
|
|
|
2020-09-03 15:15:53 +00:00
|
|
|
<!--<include-->
|
|
|
|
<!-- android:id="@+id/toolbar"-->
|
|
|
|
<!-- layout="@layout/layout_include_toolbar" />-->
|
2020-07-31 15:53:30 +00:00
|
|
|
|
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
|
|
|
android:id="@+id/swipeRefreshLayout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:tag="@android:string/yes">
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/mainPosts"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:clipToPadding="false"
|
|
|
|
android:paddingStart="8dp"
|
|
|
|
android:paddingEnd="8dp"
|
|
|
|
tools:listitem="@layout/item_post" />
|
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
2020-10-03 19:55:49 +00:00
|
|
|
</LinearLayout>
|