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