source_main_controller.xml 966 B

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