How do I add a bullet symbol in TextView?

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 •


Update

Just to clarify: use setText("\u2022 Bullet"); to add the bullet programmatically. 0x2022 = 8226


This worked for me:

<string name="text_with_bullet">Text with a \u2022</string>

Copy paste: •. I've done it with other weird characters, such as ◄ and ►.

Edit: here's an example. The two Buttons at the bottom have android:text="◄" and "►".