I'm in the process of creating an app for android, and one of the things it does is take existing Html on a server and uses TextView to display it to the user. Most Html tags are fine (e.g. bold), but things like unordered lists (aka bullets) are not rendered properly when using Html.fromHtml(txt)
I noticed that a BulletSpan exists in the android docs. However, there is absolutely no explanation as to how to use it properly.
Will the BulletSpan indeed help me, and how can I go about using it?
Finally, if it won't help me, how can I go about changing all the lists to have asterisks in the front of them (like markdown does) in Java?
Please don't answer to use webview.