fragment_library.xml 765 B

12345678910111213141516171819202122
  1. <FrameLayout
  2. xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent">
  6. <GridView
  7. android:layout_width="match_parent"
  8. android:layout_height="match_parent"
  9. android:id="@+id/gridView"
  10. android:padding="10dp"
  11. android:clipToPadding="false"
  12. android:verticalSpacing="8dp"
  13. android:horizontalSpacing="8dp"
  14. android:columnWidth="96dp"
  15. android:numColumns="auto_fit"
  16. android:stretchMode="columnWidth"
  17. android:fastScrollEnabled="true"
  18. android:choiceMode="multipleChoiceModal"
  19. tools:listitem="@layout/item_library" />
  20. </FrameLayout>