fragment_image_grid.xml 829 B

12345678910111213141516171819
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"
  4. android:background="@color/epson_lib_clean"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent">
  7. <GridView
  8. android:gravity="center"
  9. android:layout_gravity="center_vertical"
  10. android:id="@+id/gridView"
  11. android:layout_width="match_parent"
  12. android:layout_height="match_parent"
  13. android:horizontalSpacing="@dimen/image_selector_grid_thumbnail_spacing"
  14. android:verticalSpacing="@dimen/image_selector_grid_thumbnail_spacing"
  15. android:stretchMode="columnWidth"
  16. android:columnWidth="@dimen/image_selector_grid_thumbnail_size"
  17. android:numColumns="auto_fit" />
  18. </LinearLayout>