关闭

android GridView

别叨叨 1年前 ⋅ 420 阅读
<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" />
  1. android:columnWidth:固定的宽度为每列,单位是px, dp, sp, in, 或者mm。
  2. android:gravity:每个单元内的重力。值是top, bottom, left, right, center, center_vertical, center_horizontal。
  3. android:horizontalSpacing:列之间的默认水平间距,单位为:px, dp, sp, in或mm。
  4. android:numColumns:显示多少列。一个整数值或auto_fit,auto_fit显示尽可能多的列可能填补空间。
  5. android:stretchMode:如何拉伸以填充空白:
    • none: 被禁止延长。
    • spacingWidth: 每一列之间的间距被拉伸。
    • columnWidth: 每列被均等地拉伸。
    • spacingWidthUniform: 每一列之间的间距被均匀拉伸。
  6. android:verticalSpacing:行之间的缺省垂直间距。单位为:px, dp, sp, in, 或 mm。

全部评论: 0

    我有话说: