yd_loading_bg.xml 436 字节
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <!-- 填充 -->
    <solid android:color="#88000000" /> <!-- 定义填充的颜色值 -->

    <!-- 圆角 -->
    <corners
        android:bottomLeftRadius="20dp"
        android:bottomRightRadius="20dp"
        android:topLeftRadius="20dp"
        android:topRightRadius="20dp" /> <!-- 设置四个角的半径 -->

</shape>