Files
CubeAoleyunSN/app/src/main/res/drawable/comment_btnbg.xml
2019-12-30 15:34:57 +08:00

18 lines
539 B
XML

<?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>