2016-02-20 19:26:23 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-03-03 00:12:10 +01:00
|
|
|
<android.support.design.widget.CoordinatorLayout
|
2016-02-20 19:26:23 +01:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-10-25 20:26:53 +02:00
|
|
|
android:id="@+id/coordinator_layout"
|
2016-02-20 19:26:23 +01:00
|
|
|
android:layout_width="match_parent"
|
2016-10-25 20:26:53 +02:00
|
|
|
android:layout_height="match_parent">
|
2016-03-03 00:12:10 +01:00
|
|
|
|
2016-07-20 22:41:58 +02:00
|
|
|
<android.support.v4.widget.SwipeRefreshLayout
|
|
|
|
android:id="@+id/media_holder"
|
2016-03-03 00:12:10 +01:00
|
|
|
android:layout_width="match_parent"
|
2016-07-20 22:41:58 +02:00
|
|
|
android:layout_height="wrap_content">
|
2016-03-03 00:12:10 +01:00
|
|
|
|
2016-07-20 22:41:58 +02: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>
|