Thursday, November 29, 2018

android - How to display HTML in TextView?



I have simple HTML:



Title



description here




I want to display HTML styled text it in TextView. How to do this?


Answer



You need to use Html.fromHtml() to use HTML in your XML Strings. Simply referencing a String with HTML in your layout XML will not work.



This is what you should do:



if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {

textView.setText(Html.fromHtml("

Title


Description here

", Html.FROM_HTML_MODE_COMPACT));
} else {
textView.setText(Html.fromHtml("

Title


Description here

"));
}

No comments:

Post a Comment

plot explanation - Why did Peaches' mom hang on the tree? - Movies & TV

In the middle of the movie Ice Age: Continental Drift Peaches' mom asked Peaches to go to sleep. Then, she hung on the tree. This parti...