I'm just wondering if there is any significant difference between an ImageView that's set to be clickable, compared with an ImageButton?
Is there any reason for using one over the other? Is there any restriction on the drawable for an ImageButton that leaves ImageView as the only possible option?
Will I possibly lose any functionality of a button if I opt for a clickable ImageView over ImageButton?

link|improve this question

67% accept rate
feedback

1 Answer

up vote 11 down vote accepted

There's no differences, except default style. ImageButton has a non-null background by default.

EDIT: Also, ImageButton.onSetAlpha() method always returns false, scaleType is set to center and it's always inflated as focusable.

Here's ImageButton's default style:

 <style name="Widget.ImageButton">
     <item name="android:focusable">true</item>
     <item name="android:clickable">true</item>
     <item name="android:scaleType">center</item>
     <item name="android:background">@android:drawable/btn_default</item>
 </style>
link|improve this answer
Thanks for your answer. You gave me more than I spotted when going through the code myself. I guess end of the day, selection between the 2 will depend on how much of the default properties you can use without any customization. – yjw May 1 '11 at 15:24
You're welcome! Yeah, there isn't much difference indeed, so the choice is between button and not button, I think. – Pixie May 1 '11 at 16:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.