我有一个充满单词搜索值的网格视图,基本上,我不知道为什么,但是当我单击一个字母时,它会突出显示下面的下一个 4。
起初我以为是因为我的垂直间距是 -40dip,但是将其更改为 0,会使间距变大,这反过来又解决了问题,因为单词之间的间距太远,以至于图像中的长而细的点击荧光笔没有'没关系...
所以我真正要问的是,如何减少点击半径左右都可以,就是底部。
会不会是填充?
这是gridview的代码,以及上面的线性布局
<LinearLayout
android:id="@+id/ScrollViewlLayout"
android:layout_width="fill_parent"
android:layout_height="278dp"
android:orientation="vertical" >
<GridView
android:id="@+id/WordSearch"
android:layout_width="fill_parent"
android:layout_height="194dp"
android:layout_marginBottom="40dip"
android:layout_marginLeft="10dip"
android:layout_marginRight="10dip"
android:layout_marginTop="10dip"
android:layout_weight="0.13"
android:padding="2dip"
android:paddingLeft="20dip"
android:verticalSpacing="-50dip" >
</GridView>