1
0
mirror of https://github.com/KokaKiwi/BarInsta synced 2024-09-20 18:17:29 +00:00
BarInsta/app/src/main/res/layout/fragment_saved.xml

17 lines
775 B
XML
Raw Normal View History

2020-07-31 15:53:30 +00:00
<?xml version="1.0" encoding="utf-8"?>
2020-11-02 13:00:07 +00:00
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
2020-07-31 15:53:30 +00:00
xmlns:tools="http://schemas.android.com/tools"
2020-11-02 13:00:07 +00:00
android:id="@+id/swipe_refresh_layout"
2020-07-31 15:53:30 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2020-11-02 13:00:07 +00:00
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".fragments.SavedViewerFragment">
2020-07-31 15:53:30 +00:00
2020-11-02 13:00:07 +00:00
<awais.instagrabber.customviews.PostsRecyclerView
android:id="@+id/posts"
2020-07-31 15:53:30 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2020-11-02 13:00:07 +00:00
android:clipToPadding="false" />
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>