home_frame_bottom.xml 597 Bytes
<?xml version="1.0" encoding="UTF-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <!-- 边框颜色值 -->
    <item>
        <shape>
            <solid android:color="@color/center_line_gray1"/>
        </shape>
    </item>
    <!-- 主体背景颜色值  在item中的top与bottom各指定了1dp的边框线-->
    <item android:top="0dp" android:bottom="2px" android:left="0dp" android:right="0dp">
        <shape>
            <solid android:color="@android:color/white"/>
            <corners android:radius="15px" />
        </shape>
    </item>
</layer-list>