2020-08-17 13:49:51 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-08-29 08:01:42 +00:00
|
|
|
<awais.instagrabber.customviews.helpers.NestedCoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-08-17 13:49:51 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
2020-08-29 08:01:42 +00:00
|
|
|
|
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
|
|
|
android:id="@+id/swipeRefreshLayout"
|
2020-08-17 13:49:51 +00:00
|
|
|
android:layout_width="match_parent"
|
2020-08-29 08:01:42 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="?attr/colorOnPrimarySurface"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/inbox_list"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:listitem="@layout/layout_include_simple_item" />
|
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
|
|
|
</awais.instagrabber.customviews.helpers.NestedCoordinatorLayout>
|