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

24 lines
972 B
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2016-03-03 00:12:10 +01:00
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/coordinator_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
2016-03-03 00:12:10 +01:00
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/media_holder"
2016-03-03 00:12:10 +01:00
android:layout_width="match_parent"
android:layout_height="wrap_content">
2016-03-03 00:12:10 +01:00
<android.support.v7.widget.RecyclerView
android:id="@+id/media_grid"
android:layout_width="match_parent"
android:layout_height="match_parent"
2016-12-06 10:09:34 +01:00
android:scrollbars="vertical"
app:layoutManager="android.support.v7.widget.GridLayoutManager"
app:spanCount="@integer/photo_columns"/>
</android.support.v4.widget.SwipeRefreshLayout>
2016-03-03 00:12:10 +01:00
</android.support.design.widget.CoordinatorLayout>