Files
XiaoxintongSystemOS/app/src/main/res/drawable/background_weather_sun.xml
fanhuitong a29160563c version:4.1
fix:优化天气横竖屏报错
update:更新天气背景
2022-10-11 10:24:39 +08:00

20 lines
526 B
XML

<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android">
<!-- 内部颜色 -->
<solid
android:color="#fbc23b" />
<!-- 圆角的幅度 -->
<corners
android:topLeftRadius="16dp"
android:topRightRadius="16dp"
android:bottomLeftRadius="16dp"
android:bottomRightRadius="16dp" />
<padding
android:top="4dp"
android:bottom="4dp"
android:left="4dp"
android:right="4dp"
/>
</shape>