1 <?xml version="1.0" encoding="utf-8"?> 2 <com.example.android.fixedgridlayout.FixedGridLayout 3 xmlns:android="http://schemas.android.com/apk/res/android" 4 xmlns:app="http://schemas.android.com/apk/res/com.example.android.fixedgridlayout" 5 android:id="@+id/grid" 6 android:layout_width="match_parent" 7 android:layout_height="match_parent" 8 app:cellWidth="80dp" 9 app:cellHeight="100dp" 10 > 11 <ImageView 12 android:layout_width="wrap_content" 13 android:layout_height="wrap_content" 14 android:src="@drawable/bugdroid" 15 /> 16 <ImageView 17 android:layout_width="wrap_content" 18 android:layout_height="wrap_content" 19 android:src="@drawable/bugdroid" 20 /> 21 <ImageView 22 android:layout_width="wrap_content" 23 android:layout_height="wrap_content" 24 android:src="@drawable/bugdroid" 25 /> 26 <ImageView 27 android:layout_width="wrap_content" 28 android:layout_height="wrap_content" 29 android:src="@drawable/bugdroid" 30 /> 31 <ImageView 32 android:layout_width="wrap_content" 33 android:layout_height="wrap_content" 34 android:src="@drawable/bugdroid" 35 /> 36 <ImageView 37 android:layout_width="wrap_content" 38 android:layout_height="wrap_content" 39 android:src="@drawable/bugdroid" 40 /> 41 </com.example.android.fixedgridlayout.FixedGridLayout> 42 43