2017-01-23 16:19:30 +11:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-12-18 01:25:35 +11:00
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-02-13 05:22:37 +11:00
|
|
|
android:id="@+id/swipeRefreshLayout"
|
2018-05-07 06:05:54 +10:00
|
|
|
android:layout_width="match_parent"
|
2018-04-26 04:04:55 +10:00
|
|
|
android:layout_height="match_parent"
|
2018-05-07 06:05:54 +10:00
|
|
|
android:layout_gravity="top">
|
|
|
|
|
2018-12-18 01:25:35 +11:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2019-02-13 05:22:37 +11:00
|
|
|
android:id="@+id/recyclerView"
|
2017-04-15 20:28:22 +10:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-01-31 07:37:28 +11:00
|
|
|
android:background="?android:attr/colorBackground"
|
2018-05-07 06:05:54 +10:00
|
|
|
android:scrollbars="vertical" />
|
2019-11-07 06:17:53 +11:00
|
|
|
|
2018-12-18 01:25:35 +11:00
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|