如何在TextView中添加一个子弹符号?

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

168408 次浏览

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

< br >

更新

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

复制粘贴:我还用过其他一些奇怪的文字,比如“京城”和“►”。

编辑: 在这里就是一个例子。底部的两个__abc0有android:text="◄""►"

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

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

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

这招对我很管用:

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

使用Unicode我们可以很容易地做到这一点,但如果想改变子弹的颜色,我尝试了彩色子弹图像,并将其设置为drawableStart,它工作

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

这就是我最后怎么做的。

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

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

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

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

Result

在任何文本视图中添加bullet的另一个最佳方法是以下两个步骤:

首先,创建一个可绘制对象

<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">


<!--set color of the bullet-->
<solid
android:color="#666666"/> //set color of bullet


<!--set size of the bullet-->
<size
android:width="120dp"
android:height="120dp"/>
</shape>

然后在textview中添加这个drawable,并使用下面的属性设置它的pedding

android:drawableStart="@drawable/bullet"
android:drawablePadding="10dp"

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

你可以为你的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中添加所需的子弹图。它实际上不占用任何空间,并且使你不需要添加复杂的string literals。你也可以下载在这里中项目符号的SVG文件