有没有办法在android中使用这样的特殊字符围绕数字创建一个圆圈或正方形:➊,但是有自己的号码?
答案 0 :(得分:0)
是。使用android视图獾。 https://github.com/jgilfelt/android-viewbadger 当然,你有第二种方式来做到这一点。 1.为椭圆形创建自己的xml形状文件。
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid
android:color="#666666"/>
<size
android:width="120dp"
android:height="120dp"/>
</shape>
答案 1 :(得分:0)
对于特殊字符,您可以使用UniCodes或一些自定义字体。
<TextView
width...
height...
android:background="@drawable/createShapeInDrawableFolder"/>
由 Mohammad moradyar
回答