476
社区成员
发帖
与我相关
我的任务
分享
我目前实现了红圆圈提示,但是没办法在红圆圈中标数字,请求各位大佬帮忙
我的代码如下:
在drawable文件夹中定义一个文件background_new_info.xml,内容如下:
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android= "http://schemas.android.com/apk/res/android" android:shape= "oval" android:useLevel= "false" > <solid android:color= "#c6001d" /> <stroke android:width= "1dp" android:color= "#c6001d" /> <size android:width= "20dp" android:height= "20dp" /> </shape>
然后再在
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/hello_world" android:drawableRight="@drawable/background_new_info" />
我该如何把数字写到小圆圈中呢?