Hellos Mates,
When I am trying to change the string to html and render the same on the EditText Control it is not working fine.
Span does not recognize as an HTML
<span style="font-weight: bold;">Bold</span>
<div><span style="font-style: italic;">ITALIC</span></div>
<div><span style="text-decoration-line: underline;">UNDERLINE</span></div>
<div><span style="text-decoration-line: underline;"><br></span></div><div><ul><li>hieeeeeeeeeeeeee<br></li></ul></div>
How to render the given HTML in EditText. If I talk about the below HTML it gets rendered
<p dir="ltr">Testing<br>
<b>Bold</b><br>
<i>Italic</i><br>
<u>Underline</u></p>
because of span it is not getting rendered.
Please help with same. any suggestion