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".
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
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 BurgessJul 15 at 4:53
Stack Overflow is a collaboratively edited question and answer site for programmers – regardless of platform or language. It's 100% free, no registration required.