Sumedh Tambat
Sumedh Tambat

Reputation: 811

Html in textview android

I am dealing with the following html

<div style="font-size:14px; font-weight:bold;"> My Text </div>

When using the class html.fromHtml to display my html into a textview I lose the text properties. How can I display the html in a text view properly?

Upvotes: 0

Views: 93

Answers (1)

Blackbelt
Blackbelt

Reputation: 157437

not all the html/css tags are supported by Html.fromHtml. Here you can find an unofficial list of the supported tags

Upvotes: 2

Related Questions