我有一个TextView,我想通过XML在我的文本中添加一个子弹符号。这可能吗?


当前回答

你可以尝试Android文档中描述的BulletSpan。

SpannableString string = new SpannableString("Text with\nBullet point");
string.setSpan(new BulletSpan(40, color, 20), 10, 22, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);

其他回答

您必须使用正确的字符编码来实现此效果。你可以试试•

更新

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

这招对我很管用:

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

(几乎)所有的选项都是关于使用HTML标记的。

你可以使用drawables为你的TextView,如果它只有一行文本。

就像这样:

<TextView
            android:id="@+id/tv_with_bullet"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            app:drawableStartCompat="@drawable/ic_desired_bullet_icon" />

并在SVG中添加所需的子弹图。它不占用任何空间,使您无需添加复杂的字符串字面量。您还可以在这里下载项目符号的SVG文件

肯定有更好的解决办法,但我就是这么做的。

<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>

就像你想要的那样,但实际上是一种变通方法。

由于android不支持<ol>, <ul>或<li> html元素,我必须这样做

<string name="names"><![CDATA[<p><h2>List of Names:</h2></p><p>&#8226;name1<br />&#8226;name2<br /></p>]]></string>

如果你想保持自定义空间,那么使用</pre>标签