tags:

views:

659

answers:

1

I am new to Android application Development.

How can i identify the mouseover action for a list box? onmouseover of a particular cell I want to highlight that cell or change the background color.

Please help me regarding this....

+1  A: 

There isn't a concept of MouseOver in Android, at least one that I know of - user interaction is done through hardware/virtual keyboard and touchscreen.

ListView automatically highlights the current selection, so when you use the up and down DPad keys, you may get the effect you want.

Dimitar Dimitrov