track_controller.xml 910 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="vertical">
  7. <eu.kanade.tachiyomi.widget.ThemedSwipeRefreshLayout
  8. android:id="@+id/swipe_refresh"
  9. android:layout_width="match_parent"
  10. android:layout_height="match_parent"
  11. android:layout_marginTop="4dp"
  12. android:layout_marginBottom="4dp"
  13. android:orientation="vertical">
  14. <androidx.recyclerview.widget.RecyclerView
  15. android:id="@+id/track_recycler"
  16. android:layout_width="match_parent"
  17. android:layout_height="match_parent"
  18. tools:listitem="@layout/track_item" />
  19. </eu.kanade.tachiyomi.widget.ThemedSwipeRefreshLayout>
  20. </LinearLayout>