15 lines
502 B
XML
15 lines
502 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<!-- 头像背光 - 紫色径向渐变 -->
|
||
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:shape="oval">
|
||
|
|
<gradient
|
||
|
|
android:type="radial"
|
||
|
|
android:gradientRadius="60dp"
|
||
|
|
android:centerX="0.5"
|
||
|
|
android:centerY="0.5"
|
||
|
|
android:startColor="#60A855F7"
|
||
|
|
android:centerColor="#30A855F7"
|
||
|
|
android:endColor="#00A855F7" />
|
||
|
|
<size android:width="120dp" android:height="120dp" />
|
||
|
|
</shape>
|