mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-28 15:37:59 +01:00
20 lines
775 B
XML
20 lines
775 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<android.support.design.widget.CoordinatorLayout
|
|
android:id="@+id/coordinator_layout"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@android:color/black">
|
|
|
|
<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.design.widget.CoordinatorLayout>
|