I have read from various blogs that div tag is supported by Html.fromHtml but it doesn't support style attribute.
What i want to do is to assign a background color as specified by the string which contains the html tags. Something like
<p style="background-color:green;">This is a paragraph.</p>
If style attribute is not supported by Html.fromHtml(), is there any other way such that I can change the bgcolor using html tags.
Thanks.