Newer
Older
dxcgt_app / app / src / main / res / drawable / btn_add_pic.xml
wangxitong on 12 Jan 2021 352 bytes first commit
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
    <!--solid用以指定内部填充色-->
    <solid android:color="#e5e5e5"/>
    <!--可以定义描边的宽度,颜色,虚实线等-->
    <stroke
        android:width="0.5dp"
        android:color="@color/lightgray" />
    

</shape>