如何减少griview中项目之间的差距

时间:2017-10-29 18:01:45

标签: java android gridview imageview

我希望缩小每个项目之间的差距。我试图减少布局中的水平和垂直间距,但它不起作用。

我的代码是:Gridview

<GridView
    android:id="@android:id/grid"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:columnWidth="90dip"
    android:numColumns="auto_fit"
    android:verticalSpacing="2dp"
    android:horizontalSpacing="2dp"
    android:dividerHeight="0.2dp"
    android:divider="#fff" />

gridview儿童代码:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="90dip"
    android:layout_height="90dip" >

    <ImageView
        android:id="@+id/image"
        android:layout_width="90dip"
        android:layout_height="90dip"
        android:adjustViewBounds="true"
        android:contentDescription="@string/descr_image"
        android:scaleType="centerCrop" />
</RelativeLayout>

此代码的输出

Output of this code

1 个答案:

答案 0 :(得分:0)

android:columnWidth="90dip"
android:numColumns="auto_fit"

这两条线正在造成差距。 Gridview试图尽可能多地填充colums,每个colum 90 dp宽度在总屏幕宽度。要缩小间隙,请更改列宽或给出固定数量的列。