如何在TextView中添加项目符号?


Answers:


359

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


更新资料

只是澄清一下:用于setText("\u2022 Bullet");以编程方式添加项目符号。0x2022 = 8226


1
对我有帮助。
维卡斯

4
这是正确的答案。比粘贴子弹更正确。–
凯尔·克莱格

2
@Benny,如果我以编程方式设置文本,这将不起作用。textView.setText(“•你好”);
Dwivedi Ji 2014年

27
只是澄清一下:用于setText("\u2022 Bullet");以编程方式添加项目符号。 0x2022 = 8226
Diederik 2014年

106
以下是这些不同样式的项目符号的字符代码: • = \u2022, ● = \u25CF, ○ = \u25CB, ▪ = \u25AA, ■ = \u25A0, □ = \u25A1, ► = \u25BA
频繁的

59

这对我有用:

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

27

复制粘贴: •。我已经完成了其他奇怪的字符,例如◄和►。

编辑: 是一个示例。Button底部的两个具有android:text="◄""►"


7
问题是换行时。它不会缩进第二行
Bostone 2010年

4
只需使用水平方向的线性布局,第一个文本
视图

18

请在某个地方提供更好的解决方案,但这就是我所做的。

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

它可以按您想要的方式工作,但确实可以解决。


9

您可以按照Android文档中的说明尝试BulletSpan

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

结果


在API 28之前在上使用bulletRadius属性怎么办?
ibrahimyilmaz

6

这就是我最终这样做的方式。

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

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

4

使用Unicode,我们可以轻松做到这一点,但是如果要更改项目符号的颜色,我尝试使用彩色项目符号图像并将其设置为可绘制的左侧,并且可以正常工作

<TextView     
    android:text="Hello bullet"
    android:drawableLeft="@drawable/bulleticon" >
</TextView>

0

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

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

如果要保持自定义空间,请使用 </pre> tag

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.