Respostas:
Você precisa usar a codificação de caracteres correta para obter esse efeito. Você poderia tentar com•
Apenas para esclarecer: use setText("\u2022 Bullet");
para adicionar o marcador programaticamente.0x2022 = 8226
setText("\u2022 Bullet");
para adicionar o marcador programaticamente. 0x2022 = 8226
• = \u2022, ● = \u25CF, ○ = \u25CB, ▪ = \u25AA, ■ = \u25A0, □ = \u25A1, ► = \u25BA
Copiar colar: •. Eu fiz isso com outros personagens estranhos, como ◄ e ►.
Edit: aqui está um exemplo. Os dois Button
s na parte inferior têm android:text="◄"
e "►"
.
Prolly uma solução melhor lá fora, em algum lugar, mas foi isso que eu fiz.
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<TableRow>
<TextView
android:layout_column="1"
android:text="•"></TextView>
<TextView
android:layout_column="2"
android:layout_width="wrap_content"
android:text="First line"></TextView>
</TableRow>
<TableRow>
<TextView
android:layout_column="1"
android:text="•"></TextView>
<TextView
android:layout_column="2"
android:layout_width="wrap_content"
android:text="Second line"></TextView>
</TableRow>
</TableLayout>
Funciona como você deseja, mas realmente uma solução alternativa.
Você pode experimentar o BulletSpan conforme descrito nos documentos do Android.
SpannableString string = new SpannableString("Text with\nBullet point");
string.setSpan(new BulletSpan(40, color, 20), 10, 22, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
Foi assim que acabei fazendo isso.
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<View
android:layout_width="20dp"
android:layout_height="20dp"
android:background="@drawable/circle"
android:drawableStart="@drawable/ic_bullet_point" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:text="Your text"
android:textColor="#000000"
android:textSize="14sp" />
</LinearLayout>
e o código para drawbale / circle.xml é
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:innerRadius="0dp"
android:shape="ring"
android:thickness="5dp"
android:useLevel="false">
<solid android:color="@color/black1" />
</shape>
Com o Unicode, podemos fazer isso facilmente, mas se quiser mudar a cor do marcador, tentei com a imagem colorida do marcador e o defini como extraível à esquerda e funcionou
<TextView
android:text="Hello bullet"
android:drawableLeft="@drawable/bulleticon" >
</TextView>