Android GridView 属性

 

Android  GridView  属性
1 <GridView android:id="@+id/grid"  
2 android:layout_width="fill_parent"  
3 android:layout_height="fill_parent"  
4 android:verticalSpacing="35px"  <!-- grid元素之间的竖直间隔 -->  
5 android:horizontalSpacing="5px" <!--grid元素之间的水平间隔 -->  
6 android:numColumns="auto_fit" <!--表示有多少列,如果设置为auto_fit,将根据columnWidth和Spacing来自动计算 -->  
7 android:columnWidth="100px" <!-- 一般建议采用有像素密度无关的dip或者dp来表示-->  
8 android:stretchMode="columnWidth" <!--如何填满空余的位置,模拟器采用WVGA800*480,每排4列,有4*100+5*3=415,还余65px的空间,如果是columnWidth,则这剩余的65将分摊给4列,每列增加16/17px。如果采用SpacingWidth,则分摊给3个间隔空隙 -->  
9 android:gravity="center" /> 
Android  GridView  属性

 

 

 

Android GridView 属性,布布扣,bubuko.com

Android GridView 属性

上一篇:Android外接USB扫码枪


下一篇:IOS 实现自定义的导航栏背景以及自定义颜色的状态栏(支持7.0以及低版本)