You need to use Html.fromHtml()
to use HTML in your XML Strings.
(您需要使用Html.fromHtml()
在XML字符串中使用HTML。)
Simply referencing a String with HTML in your layout XML will not work. (简单地在布局XML中引用带有HTML的String将不起作用。)
This is what you should do:
(这是你应该做的:)
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
textView.setText(Html.fromHtml("<h2>Title</h2><br><p>Description here</p>", Html.FROM_HTML_MODE_COMPACT));
} else {
textView.setText(Html.fromHtml("<h2>Title</h2><br><p>Description here</p>"));
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…