24 lines
684 B
XML
24 lines
684 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
|
<!-- 圆形渐变背景 -->
|
||
|
|
<item>
|
||
|
|
<shape android:shape="oval">
|
||
|
|
<gradient
|
||
|
|
android:type="linear"
|
||
|
|
android:angle="135"
|
||
|
|
android:startColor="#B794F6"
|
||
|
|
android:endColor="#9F7AEA" />
|
||
|
|
</shape>
|
||
|
|
</item>
|
||
|
|
<!-- 用户图标 -->
|
||
|
|
<item
|
||
|
|
android:top="18dp"
|
||
|
|
android:bottom="18dp"
|
||
|
|
android:left="18dp"
|
||
|
|
android:right="18dp">
|
||
|
|
<shape android:shape="oval">
|
||
|
|
<solid android:color="#FFFFFF" />
|
||
|
|
</shape>
|
||
|
|
</item>
|
||
|
|
</layer-list>
|