<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<!-- 第一层 -->
<item>
<shape>
<solid android:color="@color/color_17" />
<!-- 圆角 -->
<corners android:radius="4px" />
</shape>
</item>
<!-- 第二层 -->
<!-- 距离第一层上边缘4px -->
<item android:top="4px">
<shape>
<!-- 实心填充颜色 -->
<solid android:color="@color/color_17"/>
</shape>
</item>
</layer-list>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<!-- 第一层 -->
<item>
<shape>
<solid android:color="@color/color_17" />
<!-- 圆角 -->
<corners android:radius="4px" />
</shape>
</item>
<!-- 第二层 -->
<!-- 距离第一层上边缘4px -->
<item android:top="4px">
<shape>
<!-- 实心填充颜色 -->
<solid android:color="@color/color_17"/>
</shape>
</item>
</layer-list>