How to create a nested BulletSpan
for a TextView
, well something like :
item 1 has:
- a
- b
item 2 has:
- c
- d
How to create a nested BulletSpan
for a TextView
, well something like :
item 1 has:
item 2 has:
You can use HTML for this.
•
will be your "Bullet" in HTML.
textView.setText(Html.fromHtml("• item 1 has:<br/> • a<br/> • b <br/>");