how do I use html in an android widget Button?
|
feedback
|
|
You should be able to use | |||||||
feedback
|
|
Mark's answer is spot on, as usual. Here is a more complete example for reference though (this is a confusing part of the docs). (And, yes, I know this example isn't using a String needs to be a resource:
Then get the resource and use
Lastly, note that all HTML doesn't work, of course. So depending on your requirements, this might not be entirely useful. Also see this issue if you try to use a link (anchor tag) and you want it to respond to being clicked. For simple stuff, see Linkify. | ||||
|
feedback
|
|
These two answers are also valid, you can also do it like this. I was trying to do something of the same nature and found out that my html along with CSS was not getting formatted correctly so I took the string and loaded it into a webview like this:
and it recognized all the styles and formatted the html correctly. More from the android reference HERE | |||
|
feedback
|