21 lines
770 B
XML
21 lines
770 B
XML
|
<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"
|
||
|
tools:context="eu.kanade.mangafeed.ui.fragment.LibraryFragment">
|
||
|
|
||
|
<GridView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:padding="4dp"
|
||
|
android:clipToPadding="false"
|
||
|
android:verticalSpacing="4dp"
|
||
|
android:horizontalSpacing="4dp"
|
||
|
android:columnWidth="96dp"
|
||
|
android:numColumns="auto_fit"
|
||
|
android:stretchMode="columnWidth"
|
||
|
android:drawSelectorOnTop="true"
|
||
|
android:fastScrollEnabled="true"
|
||
|
android:id="@+id/gridView" />
|
||
|
|
||
|
</FrameLayout>
|