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