vote up 1 vote down star

I'm trying to have an image (as the background) on a button and add dynamically, depending on what's happening during run-time, some text above/over the image.

If I use ImageButton I don't even have the possibility to add text. If I use Button I can add text but only define an image with android:drawableBottom and similar XML attributes as defined here.

However these attributes only combine text & image in x- and y-dimensions, meaning I can draw an image around my text, but not below/under my text (with the z-axis defined as coming out of the display).

Any suggestions on how to do this? One idea would be to either extend Button or ImageButton and override the draw()-method. But with my current level of knowledge I don't really know how to do this (2D rendering). Maybe someone with more experience knows a solution or at least some pointers to start?

Thanks

flag

77% accept rate

1 Answer

vote up 0 vote down check

You can use setBackgroundDrawable() on Button to set the background of a button.

Any text will appear above the background.

If you are looking for something similar in xml there is: android:background attribute which does the same

link|flag
1  
If you go this route, you do not want to just use a simple drawable for the background. Use a StateListDrawable (usually via <selector> XML file in res/drawable/), so you can define backgrounds for the various states (normal, pressed, focused, disabled, etc.). – commonsware.com Oct 7 at 18:11
Agree with you, look for this question and my answer: stackoverflow.com/questions/1533038/… – Vitaly Polonetsky Oct 7 at 18:40
How stupid. How could I have missed that in the documentation. Thanks for the quick answer and also the hint with the <selector>. That's something I definitely want to implement in the future. – Stefan Klumpp Oct 8 at 9:20

Your Answer

Get an OpenID
or

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