2016-11-07 13:06:18 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-02-12 21:58:05 +00:00
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:id="@+id/swipeRefreshLayout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical">
|
2016-11-07 13:06:18 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2018-09-10 06:27:45 +00:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2016-11-07 13:06:18 +00:00
|
|
|
android:id="@+id/recyclerView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:clipToPadding="false"
|
|
|
|
android:dividerHeight="@dimen/card_divider_space"
|
2018-09-10 06:27:45 +00:00
|
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />
|
2016-11-07 13:06:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2018-09-10 06:27:45 +00:00
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|