19 lines
534 B
XML
19 lines
534 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<!-- 内部颜色 -->
|
|
<solid
|
|
android:color="@color/weathet_bg_color" />
|
|
<!-- 圆角的幅度 -->
|
|
<corners
|
|
android:topLeftRadius="10dp"
|
|
android:topRightRadius="10dp"
|
|
android:bottomLeftRadius="10dp"
|
|
android:bottomRightRadius="10dp" />
|
|
|
|
<padding
|
|
android:bottom="4dp"
|
|
android:left="4dp"
|
|
android:right="4dp"
|
|
android:top="4dp" />
|
|
</shape> |