This commit is contained in:
2019-12-30 15:34:57 +08:00
commit ce9ca54dcb
405 changed files with 47305 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android">
<!-- 内部颜色 -->
<solid
android:color="#FFFFF8" />
<!-- 边缘线条颜色 -->
<stroke
android:width="@dimen/PX2x"
android:color="#888787" />
<!-- 圆角的幅度 -->
<corners
android:topLeftRadius="@dimen/PX25x"
android:topRightRadius="@dimen/PX25x"
android:bottomLeftRadius="@dimen/PX25x"
android:bottomRightRadius="@dimen/PX25x" />
</shape>