Hi I have imageview in my android app that i am using like button with onClick event given , but as you might guess it is not giving imageview a clickable effect when clicked , how can i achieve that ??
|
feedback
|
|
You can design different images for clicked/not clicked states and set them in the onTouchListener as follows
The better choice is that you define a selector as follows
and select the image in the event:
| |||
|
feedback
|
|
Why not just use an ImageButton? | |||
|
feedback
|
|
Use an | |||
|
feedback
|
|
Use an | |||
|
feedback
|
|
you could try with | |||
|
feedback
|
|
For defining the selector drawable choice
I have to use android:state_pressed instead of android:state_selected
| |||
|
feedback
|
|
It's possible to do with just one image file using the ColorFilter method. However, ColorFilter expects to work with ImageViews and not Buttons, so you have to transform your buttons into ImageViews. This isn't a problem if you're using images as your buttons anyway, but it's more annoying if you had text... Anyway, assuming you find a way around the problem with text, here's the code to use:
That applies a red overlay to the button (the color code is the hex code for fully opaque red - first two digits are transparency, then it's RR GG BB.). | ||||
|
feedback
|