I have String with ul and li in it. And I am trying to show them in HTML formatting in textview. textView.setText(Html.fromHtml(myHtmlText)); But tex
textView.setText(Html.fromHtml(myHtmlText));
see HTML Tags Supported By TextView both ul and li tags are not Supported by android.text.Html class.
SOLUTION : you can display these tags using WebView or by TagHandler
for more help see this post:
Html List tag not working in android textview. what can i do?