vote up 2 vote down star

how do I use html in an android widget Button?

flag

61% accept rate

1 Answer

vote up 2 vote down check

You should be able to use Html.fromHtml() to convert raw HTML into a Spanned object that you can use in a setText() call on your button. As the Html documentation states, "Not all HTML tags are supported".

link|flag
is there a way to do it without using Java code? I have static text encoded in a resource file: <Button android:id="@+id/x_button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/x" </Button> <resources> <string name="x"><p>XX</p>YY</string> </resources> – unknown (google) Jul 14 at 22:16
Not that I am aware of. – commonsware.com Jul 14 at 23:48
You should be able to use the same method call that @commonsware.com used, and just get the string from the resource file. Context.getString(R.id.x) should be it – Andrew Burgess Jul 15 at 4:53

Your Answer

Get an OpenID
or

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