2016-02-16 22:23:25 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-01-07 12:22:25 +01:00
|
|
|
<android.support.v4.widget.SwipeRefreshLayout
|
2016-02-16 22:23:25 +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-01-07 12:22:25 +01:00
|
|
|
android:id="@+id/directories_holder"
|
2016-02-16 22:23:25 +01:00
|
|
|
android:layout_width="match_parent"
|
2016-10-25 20:26:53 +02:00
|
|
|
android:layout_height="match_parent">
|
2016-03-06 21:45:48 +01:00
|
|
|
|
2017-01-07 12:22:25 +01:00
|
|
|
<com.simplemobiletools.gallery.views.MyScalableRecyclerView
|
|
|
|
android:id="@+id/directories_grid"
|
2016-03-06 21:45:48 +01:00
|
|
|
android:layout_width="match_parent"
|
2017-01-07 12:22:25 +01:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:scrollbars="vertical"
|
|
|
|
app:layoutManager="android.support.v7.widget.GridLayoutManager"
|
|
|
|
app:spanCount="@integer/directory_columns"/>
|
2016-03-06 21:45:48 +01:00
|
|
|
|
2017-01-07 12:22:25 +01:00
|
|
|
</android.support.v4.widget.SwipeRefreshLayout>
|