共有属性 * progressDrawable 内容可以如下设置:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
//覆盖系统 id 实现自定义 background
<item android:id="@android:id/background" >
//在 item 中写会实现圆角功能 如果要直角在 item 中写 background 参数.
<shape >
<corners android:radius="5dp"/>
<solid android:color="@color/Grey_50"/>
</shape>
© 著作权归作者所有
文章评论(0)