extension_controller.xml 1.1 KB

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent">
  7. <eu.kanade.tachiyomi.widget.ThemedSwipeRefreshLayout
  8. android:id="@+id/ext_swipe_refresh"
  9. android:layout_width="match_parent"
  10. android:layout_height="match_parent">
  11. <androidx.recyclerview.widget.RecyclerView
  12. android:id="@+id/ext_recycler"
  13. android:layout_width="match_parent"
  14. android:layout_height="wrap_content"
  15. tools:listitem="@layout/source_main_controller_card_header" />
  16. </eu.kanade.tachiyomi.widget.ThemedSwipeRefreshLayout>
  17. <eu.kanade.tachiyomi.ui.library.MaterialFastScroll
  18. android:id="@+id/fast_scroller"
  19. android:layout_width="wrap_content"
  20. android:layout_height="match_parent"
  21. android:layout_gravity="end"
  22. app:fastScrollerBubbleEnabled="false"
  23. tools:visibility="visible" />
  24. </FrameLayout>