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.

wordsearch

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

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -