如何显示最后一个角色?即。 “我”在一个圆圈里。
一种方法是放置图像,但是在XML或带有背景圈或其他方式的TextView中是否存在类似“Unicode”的替代方式?
答案 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)