2020-08-30 12:51:47 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-11-14 18:58:27 +00:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-08-30 12:51:47 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-09-03 19:07:43 +00:00
|
|
|
android:background="?attr/colorSurface">
|
2020-08-30 12:51:47 +00:00
|
|
|
|
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
2020-11-01 12:56:04 +00:00
|
|
|
android:id="@+id/swipe_refresh_layout"
|
2020-08-30 12:51:47 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-11-01 12:56:04 +00:00
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
2020-08-30 12:51:47 +00:00
|
|
|
|
2020-11-01 12:56:04 +00:00
|
|
|
<awais.instagrabber.customviews.PostsRecyclerView
|
|
|
|
android:id="@+id/posts"
|
2020-08-30 12:51:47 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-11-01 12:56:04 +00:00
|
|
|
android:clipToPadding="false" />
|
2020-08-30 12:51:47 +00:00
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
2020-11-14 18:58:27 +00:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|