Android Emulator clicking more than one item in gridview -
i have grid view full of values word search, basically, don't know why, when click letter, highlights next 4 beneath.
at first thought because vetical spacing -40dip, howeverchanging 0, makes spacing huge, in turn fixes problem, because words spaced far apart long thin click highlighter in image doesn't matter...
so i'm asking is, how can reduce click radius it's fine left , right, it's bottom .
could padding?
this code gridview, , linear layout above
<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>
the problem due style applied text views in grid view.
Comments
Post a Comment