Issue
I have a TextView and I want to add a bullet symbol in my text through XML. Is it possible?
Solution
You have to use the right character encoding to accomplish this effect. You could try with •
Update
Just to clarify: use setText("\u2022 Bullet");
to add the bullet programmatically. 0x2022 = 8226
Answered By - Benny Skogberg
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.