2017-10-19 17:24:14 +02:00
|
|
|
<RelativeLayout
|
2016-11-09 21:10:08 +01:00
|
|
|
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">
|
|
|
|
|
2017-11-16 14:03:18 +01:00
|
|
|
<com.simplemobiletools.commons.views.MyRecyclerView
|
2017-10-19 17:24:14 +02:00
|
|
|
android:id="@+id/media_grid"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:scrollbars="none"
|
|
|
|
app:layoutManager="android.support.v7.widget.GridLayoutManager"
|
|
|
|
app:spanCount="@integer/media_columns_vertical_scroll"/>
|
|
|
|
|
|
|
|
<com.simplemobiletools.commons.views.FastScroller
|
|
|
|
android:id="@+id/media_vertical_fastscroller"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:paddingLeft="@dimen/normal_margin"
|
|
|
|
android:paddingStart="@dimen/normal_margin">
|
|
|
|
|
2017-12-05 23:28:04 +01:00
|
|
|
<include layout="@layout/fastscroller_handle_vertical"/>
|
2017-10-19 17:24:14 +02:00
|
|
|
|
|
|
|
</com.simplemobiletools.commons.views.FastScroller>
|
|
|
|
|
|
|
|
<com.simplemobiletools.commons.views.FastScroller
|
|
|
|
android:id="@+id/media_horizontal_fastscroller"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:paddingTop="@dimen/normal_margin">
|
|
|
|
|
2017-12-06 16:42:06 +01:00
|
|
|
<include layout="@layout/fastscroller_handle_horizontal"/>
|
2017-10-19 17:24:14 +02:00
|
|
|
|
|
|
|
</com.simplemobiletools.commons.views.FastScroller>
|
|
|
|
</RelativeLayout>
|