extension_controller.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132
  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/swipe_refresh"
  9. android:layout_width="match_parent"
  10. android:layout_height="match_parent">
  11. <androidx.recyclerview.widget.RecyclerView
  12. android:id="@+id/recycler"
  13. android:layout_width="match_parent"
  14. android:layout_height="wrap_content"
  15. android:clipToPadding="false"
  16. android:paddingTop="8dp"
  17. android:paddingBottom="@dimen/action_toolbar_list_padding"
  18. tools:listitem="@layout/section_header_item" />
  19. </eu.kanade.tachiyomi.widget.ThemedSwipeRefreshLayout>
  20. <eu.kanade.tachiyomi.widget.MaterialFastScroll
  21. android:id="@+id/fast_scroller"
  22. android:layout_width="wrap_content"
  23. android:layout_height="match_parent"
  24. android:layout_gravity="end"
  25. app:fastScrollerBubbleEnabled="false"
  26. tools:visibility="visible" />
  27. </FrameLayout>