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"
|
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"
|
2018-05-06 22:05:54 +02:00
|
|
|
android:layout_gravity="top">
|
|
|
|
|
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"
|
2018-05-06 22:05:54 +02:00
|
|
|
android:scrollbars="vertical" />
|
2018-12-17 15:25:35 +01:00
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|