source_main_controller.xml 845 B

12345678910111213141516171819202122
  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. tools:listitem="@layout/source_main_controller_card" />
  12. <eu.davidea.fastscroller.FastScroller
  13. android:id="@+id/fast_scroller"
  14. android:layout_width="wrap_content"
  15. android:layout_height="match_parent"
  16. android:layout_gravity="end"
  17. app:fastScrollerBubbleEnabled="false"
  18. tools:visibility="visible" />
  19. </FrameLayout>