FossifyGallery/app/src/main/res/layout/activity_media.xml

18 lines
720 B
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/media_holder"
android:layout_width="match_parent"
android:layout_height="wrap_content">
2016-03-03 00:12:10 +01:00
<com.simplemobiletools.gallery.views.MyScalableRecyclerView
android:id="@+id/media_grid"
2016-03-03 00:12:10 +01:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical"
app:layoutManager="android.support.v7.widget.GridLayoutManager"
2016-12-11 21:54:40 +01:00
app:spanCount="@integer/media_columns"/>
2016-03-03 00:12:10 +01:00
</android.support.v4.widget.SwipeRefreshLayout>