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

26 lines
1,001 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"
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
<GridView
android:id="@+id/media_grid"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:choiceMode="multipleChoiceModal"
android:columnWidth="@dimen/medium_tmb_size"
android:horizontalSpacing="1dp"
android:numColumns="auto_fit"
android:stretchMode="columnWidth"
android:verticalSpacing="1dp"/>
</android.support.v4.widget.SwipeRefreshLayout>
2016-03-03 00:12:10 +01:00
</android.support.design.widget.CoordinatorLayout>