如何在android中显示这样的符号?

时间:2014-01-28 08:14:03

标签: java android xml

enter image description here

如何显示最后一个角色?即。 “我”在一个圆圈里。

一种方法是放置图像,但是在XML或带有背景圈或其他方式的TextView中是否存在类似“Unicode”的替代方式?

3 个答案:

答案 0 :(得分:5)

在unicode中,它是CIRCLED LATIN SMALL LETTER Iⓘ,XML ⓘ

答案 1 :(得分:0)

将以下设置为背景:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:innerRadiusRatio="1"
    android:padding="10dp"
    android:shape="oval"
    android:thicknessRatio="2" >

    <stroke
        android:width="1dp"
        android:color="#777" />

</shape>

答案 2 :(得分:0)