24 lines
818 B
XML
24 lines
818 B
XML
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<!-- This is the main color -->
|
|
<item>
|
|
<shape>
|
|
<!-- 边框颜色 -->
|
|
<gradient android:startColor="#FF757EFF" android:endColor="#FF009AEF" android:angle="0"/>
|
|
<corners android:radius="10dp"/>
|
|
</shape>
|
|
</item>
|
|
<!-- 给View的上 左 右设置8dp的边框 -->
|
|
<item
|
|
android:bottom="3dp"
|
|
android:left="1dp"
|
|
android:right="3dp"
|
|
android:top="1dp">
|
|
<shape>
|
|
<!-- View填充颜色 -->
|
|
<solid android:color="#FF8A04" />
|
|
<gradient android:startColor="#FF757EFF" android:endColor="#FF009AEF" android:angle="0"/>
|
|
<corners android:radius="10dp" />
|
|
</shape>
|
|
</item>
|
|
|
|
</layer-list> |