clear_database_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:tools="http://schemas.android.com/tools"
  4. xmlns:app="http://schemas.android.com/apk/res-auto"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent">
  7. <androidx.recyclerview.widget.RecyclerView
  8. android:id="@+id/recycler"
  9. android:layout_width="match_parent"
  10. android:layout_height="match_parent"
  11. android:choiceMode="multipleChoice"
  12. android:clipToPadding="false"
  13. android:paddingBottom="@dimen/fab_list_padding"
  14. tools:listitem="@layout/clear_database_source_item" />
  15. <eu.kanade.tachiyomi.widget.MaterialFastScroll
  16. android:id="@+id/fast_scroller"
  17. android:layout_width="wrap_content"
  18. android:layout_height="match_parent"
  19. android:layout_gravity="end"
  20. app:fastScrollerBubbleEnabled="false"
  21. tools:visibility="visible" />
  22. <eu.kanade.tachiyomi.widget.EmptyView
  23. android:id="@+id/empty_view"
  24. android:layout_width="wrap_content"
  25. android:layout_height="wrap_content"
  26. android:layout_gravity="center"
  27. android:visibility="gone" />
  28. </FrameLayout>