migration_sources_controller.xml 1.1 KB

12345678910111213141516171819202122232425262728293031
  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="match_parent"
  11. android:clipToPadding="false"
  12. android:paddingTop="8dp"
  13. android:paddingBottom="@dimen/action_toolbar_list_padding" />
  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. <eu.kanade.tachiyomi.widget.EmptyView
  22. android:id="@+id/empty_view"
  23. android:layout_width="wrap_content"
  24. android:layout_height="wrap_content"
  25. android:layout_gravity="center"
  26. android:visibility="gone" />
  27. </FrameLayout>