17

我有一个文本视图,其中包含一个字符(所有单个数字,数字 0-9)。我想在数字周围画一个圆圈或一个正方形。我看到一个线程提到使用九个补丁来围绕它设置样式,但我不确定如何做到这一点(或者它是否是最好的方法)。我怎样才能在数字周围有一个圆圈?

谢谢

4

3 回答 3

56

只需要像这样创建一个圆形可绘制对象

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" 
    android:shape="oval">
    <corners android:radius="10dip"/>
    <stroke android:color="@color/red" android:width="2dip"/>
    <solid android:color="@android:color/transparent"/>
</shape>

并将此可绘制对象设置为您的 TextView 背景。

于 2012-04-08T05:20:07.680 回答
1
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval">
    <stroke android:color="@color/teal_200" android:width="2dip"/>
    <solid android:color="@android:color/transparent"/>
    <size
        android:width="10dp"
        android:height="10dp" 
    />
</shape>
于 2021-03-05T23:14:19.387 回答
0

您应该能够只给 TextView 一个 Shape drawable,它是一个圆形作为背景。

http://developer.android.com/guide/topics/resources/drawable-resource.html#Shape

于 2012-04-08T05:06:42.433 回答