25 lines
860 B
XML
25 lines
860 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<item android:width="40dp" android:height="40dp">
|
|
<shape android:shape="oval">
|
|
<corners
|
|
android:radius="1dp"
|
|
android:topLeftRadius="12dp"
|
|
android:topRightRadius="2dp"
|
|
android:bottomLeftRadius="2dp"
|
|
android:bottomRightRadius="2dp"/><!-- 设置圆角半径 -->
|
|
|
|
<gradient
|
|
android:startColor="#fffe9afc"
|
|
|
|
android:endColor="#ff8ab3ff"
|
|
android:useLevel="true"
|
|
android:angle="45"
|
|
android:type="linear"
|
|
android:centerX="0"
|
|
android:centerY="0"
|
|
android:gradientRadius="90"/>
|
|
|
|
</shape>
|
|
</item>
|
|
</selector> |