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

20 lines
951 B
XML
Raw Normal View History

2020-08-30 12:51:47 +00:00
<?xml version="1.0" encoding="utf-8"?>
<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>
</androidx.coordinatorlayout.widget.CoordinatorLayout>