如何使用Android减少GridView中的空间?

时间:2014-02-09 17:54:45

标签: android xml grid

我有以下xml代码,我想减少Cell之间的空间。

字符串数组

String[] numbers = new String[] { 
            "A", "B", "C", "D", "E",
            "F", "G", "H", "I", "J",
            "K", "L", "M", "N", "O",
            "P", "Q", "R", "S", "T",
            "U", "V", "W", "X", "Y", "Z"};  

XML代码 - :

 <GridView

android:id="@+id/gridView"
android:numColumns="5"
android:gravity="center"
android:columnWidth="5dp"
android:verticalSpacing="2dp"
android:horizontalSpacing="2dp"
android:padding="0dp"
android:stretchMode="columnWidth"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

 </GridView>

我想减少单元格之间的空格,但我没有找到它的代码或xml属性。请建议我怎么做。

1 个答案:

答案 0 :(得分:0)

我认为链接可以解决您的问题

Check this out

And this one