标签:android c class blog code java
1
2
3
4
5
6
7
8
9 |
<GridView android:id= "@+id/grid" android:layout_width= "fill_parent" android:layout_height= "fill_parent" android:verticalSpacing= "35px"
<!-- grid元素之间的竖直间隔 --> android:horizontalSpacing= "5px"
<!--grid元素之间的水平间隔 --> android:numColumns= "auto_fit"
<!--表示有多少列,如果设置为auto_fit,将根据columnWidth和Spacing来自动计算 --> android:columnWidth= "100px"
<!-- 一般建议采用有像素密度无关的dip或者dp来表示--> android:stretchMode= "columnWidth"
<!--如何填满空余的位置,模拟器采用WVGA800* 480 ,每排 4 列,有 4 * 100 + 5 * 3 = 415 ,还余65px的空间,如果是columnWidth,则这剩余的 65 将分摊给 4 列,每列增加 16 /17px。如果采用SpacingWidth,则分摊给 3 个间隔空隙 --> android:gravity= "center"
/> |
Gridview的stretchMode详解附自动宽度,布布扣,bubuko.com
标签:android c class blog code java
原文地址:http://www.cnblogs.com/leihupqrst/p/3777079.html