history_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. android:orientation="vertical">
  8. <androidx.recyclerview.widget.RecyclerView
  9. android:id="@+id/recycler"
  10. android:layout_width="match_parent"
  11. android:layout_height="match_parent"
  12. android:clipToPadding="false"
  13. android:paddingBottom="@dimen/action_toolbar_list_padding"
  14. tools:listitem="@layout/history_item" />
  15. <eu.kanade.tachiyomi.ui.library.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>