mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-08 19:57:25 +01:00
22 lines
716 B
XML
22 lines
716 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">
|
|
|
|
<GridView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:id="@+id/gridView"
|
|
android:padding="10dp"
|
|
android:clipToPadding="false"
|
|
android:verticalSpacing="4dp"
|
|
android:horizontalSpacing="8dp"
|
|
android:columnWidth="96dp"
|
|
android:numColumns="auto_fit"
|
|
android:stretchMode="columnWidth"
|
|
android:fastScrollEnabled="true"
|
|
tools:listitem="@layout/item_library" />
|
|
|
|
</FrameLayout>
|