9 lines
316 B
XML
9 lines
316 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<!-- 内部颜色 -->
|
|
<solid android:color="#EBEBEB" />
|
|
<!-- 圆角的幅度 -->
|
|
<corners
|
|
android:bottomLeftRadius="@dimen/dp_25"
|
|
android:topLeftRadius="@dimen/dp_25" />
|
|
</shape> |