<GridView
android:id="@+id/gridView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:horizontalSpacing="5dp"
android:numColumns="8"
android:verticalSpacing="5dp" />
- android:columnWidth:固定的宽度为每列,单位是px, dp, sp, in, 或者mm。
- android:gravity:每个单元内的重力。值是top, bottom, left, right, center, center_vertical, center_horizontal。
- android:horizontalSpacing:列之间的默认水平间距,单位为:px, dp, sp, in或mm。
- android:numColumns:显示多少列。一个整数值或auto_fit,auto_fit显示尽可能多的列可能填补空间。
- android:stretchMode:如何拉伸以填充空白:
- none: 被禁止延长。
- spacingWidth: 每一列之间的间距被拉伸。
- columnWidth: 每列被均等地拉伸。
- spacingWidthUniform: 每一列之间的间距被均匀拉伸。
- android:verticalSpacing:行之间的缺省垂直间距。单位为:px, dp, sp, in, 或 mm。
注意:本文归作者所有,未经作者允许,不得转载