Button Color Change On Hover
I'm just a beginner with Android. I want the button to change its color on mouseover. I don't know how to do that in android. Can it be done? View for a button:
and how i use it in Button for color change on hover
<Buttonandroid:layout_width="match_parent"android:layout_height="match_parent"android:background="@drawable/hover"
></Button>
Solution 4:
Hovering is possible on Android: all devices that have a track ball or D-pad or QWERTY keyboard arrow keys can move the "hover" or focus to anything that is pressable (clickable). Then, on my G1 for example, you press the track ball to press it down into the android:state_pressed
state.
Post a Comment for "Button Color Change On Hover"