2016-12-18 16:56:28 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-05-16 04:18:46 -04:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2016-12-18 16:56:28 -05:00
|
|
|
|
2020-03-10 22:53:49 -04:00
|
|
|
<eu.kanade.tachiyomi.widget.ThemedSwipeRefreshLayout
|
2016-12-18 16:56:28 -05:00
|
|
|
android:id="@+id/swipe_refresh"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2017-05-16 04:18:46 -04:00
|
|
|
android:layout_marginTop="4dp"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:layout_marginBottom="4dp"
|
2016-12-18 16:56:28 -05:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
2020-01-05 11:29:27 -05:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2017-05-06 09:49:39 -04:00
|
|
|
android:id="@+id/track_recycler"
|
2016-12-18 16:56:28 -05:00
|
|
|
android:layout_width="match_parent"
|
2017-05-16 04:18:46 -04:00
|
|
|
android:layout_height="match_parent"
|
2020-02-21 18:43:50 -05:00
|
|
|
tools:listitem="@layout/track_item" />
|
2016-12-18 16:56:28 -05:00
|
|
|
|
2020-03-10 22:53:49 -04:00
|
|
|
</eu.kanade.tachiyomi.widget.ThemedSwipeRefreshLayout>
|
2016-12-18 16:56:28 -05:00
|
|
|
|
2020-01-05 11:29:27 -05:00
|
|
|
</LinearLayout>
|