Files
Xuewang365OSHonor/app/src/main/res/drawable/grade_pop_bg.xml
tongtongstudio 5ae6a6ebe9 version:1.0.0
fix:
update:增加autosize
2025-11-24 23:04:14 +08:00

21 lines
585 B
XML

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:angle="90"
android:endColor="#6682fa"
android:startColor="#556bf1" />
<!-- 圆角的幅度 -->
<corners
android:bottomLeftRadius="4dp"
android:bottomRightRadius="4dp"
android:topLeftRadius="4dp"
android:topRightRadius="4dp" />
<padding
android:bottom="2dp"
android:left="8dp"
android:right="8dp"
android:top="2dp" />
</shape>