A few Html tags in the strings.xml file are rendered properly when used in a TextView, so for example, the following text resource would appear bold:
<string name="example_text"><b>This text is bold</b></string>
However, if the same text is used in a custom Dialog, the formatting is ignored.
Does anyone know how to format part of the text in a scrollview within a dialog box?
You could format with HTML by using a WebView in the dialog:
strings.xml
java