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
|
|
|
|
android:id="@+id/coordinator_layout"
|
2016-02-20 19:26:23 +01:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
2016-03-07 21:41:55 +01:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@android:color/black">
|
2016-03-03 00:12:10 +01:00
|
|
|
|
|
|
|
<GridView
|
2016-06-05 23:22:32 +02:00
|
|
|
android:id="@+id/media_grid"
|
2016-03-03 00:12:10 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:choiceMode="multipleChoiceModal"
|
2016-06-05 23:22:32 +02:00
|
|
|
android:columnWidth="@dimen/medium_tmb_size"
|
2016-03-03 00:12:10 +01:00
|
|
|
android:horizontalSpacing="1dp"
|
|
|
|
android:numColumns="auto_fit"
|
|
|
|
android:stretchMode="columnWidth"
|
|
|
|
android:verticalSpacing="1dp"/>
|
|
|
|
|
|
|
|
</android.support.design.widget.CoordinatorLayout>
|