我有一个网格视图,其中包含单词搜索的值, 基本上,我不知道为什么,但当我点击一个字母时,它会突出显示下面的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>
答案 0 :(得分:0)
问题是由于在网格视图中应用于文本视图的样式。