2016-02-16 22:23:25 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-03-06 21:45:48 +01:00
|
|
|
<android.support.design.widget.CoordinatorLayout
|
|
|
|
android:id="@+id/coordinator_layout"
|
2016-02-16 22:23:25 +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-06 21:45:48 +01:00
|
|
|
|
|
|
|
<GridView
|
|
|
|
android:id="@+id/directories_grid"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:choiceMode="multipleChoiceModal"
|
|
|
|
android:columnWidth="@dimen/dir_tmb_size"
|
|
|
|
android:horizontalSpacing="1dp"
|
|
|
|
android:numColumns="auto_fit"
|
|
|
|
android:stretchMode="columnWidth"
|
|
|
|
android:verticalSpacing="1dp"/>
|
|
|
|
|
|
|
|
</android.support.design.widget.CoordinatorLayout>
|