migration_sources_controller.xml 902 B

1234567891011121314151617181920212223
  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. <eu.kanade.tachiyomi.ui.library.MaterialFastScroll
  14. android:id="@+id/fast_scroller"
  15. android:layout_width="wrap_content"
  16. android:layout_height="match_parent"
  17. android:layout_gravity="end"
  18. app:fastScrollerBubbleEnabled="false"
  19. tools:visibility="visible" />
  20. </FrameLayout>