2021-11-29 19:17:48 +01:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-11-16 23:50:46 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2017-10-19 17:24:14 +02:00
|
|
|
android:id="@+id/media_grid_holder"
|
2016-11-09 21:10:08 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-10-19 17:24:14 +02:00
|
|
|
android:paddingTop="@dimen/activity_margin">
|
|
|
|
|
2021-11-29 19:17:48 +01:00
|
|
|
<com.qtalk.recyclerviewfastscroller.RecyclerViewFastScroller
|
2021-11-30 12:22:22 +01:00
|
|
|
android:id="@+id/media_fastscroller"
|
2017-10-19 17:24:14 +02:00
|
|
|
android:layout_width="match_parent"
|
2021-11-29 19:17:48 +01:00
|
|
|
android:layout_height="wrap_content">
|
2017-10-19 17:24:14 +02:00
|
|
|
|
2021-11-29 19:17:48 +01:00
|
|
|
<com.simplemobiletools.commons.views.MyRecyclerView
|
|
|
|
android:id="@+id/media_grid"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:scrollbars="none"
|
|
|
|
app:layoutManager="com.simplemobiletools.commons.views.MyGridLayoutManager"
|
|
|
|
app:spanCount="@integer/media_columns_vertical_scroll" />
|
2017-10-19 17:24:14 +02:00
|
|
|
|
2021-11-29 19:17:48 +01:00
|
|
|
</com.qtalk.recyclerviewfastscroller.RecyclerViewFastScroller>
|
2017-10-19 17:24:14 +02:00
|
|
|
</RelativeLayout>
|