I got this string resource:
<string name="about_app_text"><b>%1$s</b> some text.\n\n
<b>%2$s, text</b>, more text.</string>
The text inside the <b> tag does not get bold. Why is that?
I got this string resource:
<string name="about_app_text"><b>%1$s</b> some text.\n\n
<b>%2$s, text</b>, more text.</string>
The text inside the <b> tag does not get bold. Why is that?
you can try this
YourTextview.setText(Html.fromHtml(getResources().getString(R.string. about_app_text)));
string resource:
<string name="about_app_text"><![CDATA[<b>%1$s</b> some text.\n\n
<b>%2$s, text</b>, more text.]]></string>