I have a TextView and I want to add a bullet symbol in my text through XML. Is it possible?
You have to use the right character encoding to accomplish this effect. You could try with •
•
Just to clarify: use setText("u2022 Bullet"); to add the bullet programmatically. 0x2022 = 8226
setText("u2022 Bullet");
0x2022 = 8226
1.4m articles
1.4m replys
5 comments
57.0k users