mihon/app/src/main/res/layout/fragment_library.xml

23 lines
765 B
XML
Raw Normal View History

2015-09-25 19:43:23 +02:00
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
2015-09-25 12:44:11 +02:00
<GridView
android:layout_width="match_parent"
android:layout_height="match_parent"
2015-09-25 19:43:23 +02:00
android:id="@+id/gridView"
android:padding="10dp"
2015-09-25 12:44:11 +02:00
android:clipToPadding="false"
2015-09-28 02:35:54 +02:00
android:verticalSpacing="8dp"
2015-09-25 19:43:23 +02:00
android:horizontalSpacing="8dp"
2015-09-25 12:44:11 +02:00
android:columnWidth="96dp"
android:numColumns="auto_fit"
android:stretchMode="columnWidth"
android:fastScrollEnabled="true"
2015-10-02 18:27:25 +02:00
android:choiceMode="multipleChoiceModal"
2015-09-25 19:43:23 +02:00
tools:listitem="@layout/item_library" />
2015-09-25 12:44:11 +02:00
</FrameLayout>