2017-09-23 13:11:39 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-02-22 00:43:50 +01:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-03-22 17:43:53 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-04-18 20:47:22 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-09-23 13:11:39 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
2020-01-05 17:29:27 +01:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2017-09-23 13:11:39 +02:00
|
|
|
android:id="@+id/recycler"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-04-29 05:03:30 +02:00
|
|
|
tools:listitem="@layout/source_main_controller_card_header" />
|
2017-09-23 13:11:39 +02:00
|
|
|
|
2020-03-22 17:43:53 +01:00
|
|
|
<eu.davidea.fastscroller.FastScroller
|
|
|
|
android:id="@+id/fast_scroller"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
2020-05-02 20:39:47 +02:00
|
|
|
android:layout_gravity="right"
|
|
|
|
android:layoutDirection="ltr"
|
2020-03-22 17:43:53 +01:00
|
|
|
app:fastScrollerBubbleEnabled="false"
|
2020-04-18 20:47:22 +02:00
|
|
|
tools:visibility="visible" />
|
2020-03-22 17:43:53 +01:00
|
|
|
|
2020-01-05 17:29:27 +01:00
|
|
|
</FrameLayout>
|