15 lines
518 B
XML
15 lines
518 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<!-- 内部颜色 -->
|
|
<solid android:color="#0480FF" />
|
|
<!-- 圆角的幅度 -->
|
|
<corners
|
|
android:bottomLeftRadius="@dimen/dp_4"
|
|
android:bottomRightRadius="@dimen/dp_4"
|
|
android:topLeftRadius="@dimen/dp_4"
|
|
android:topRightRadius="@dimen/dp_4" />
|
|
|
|
<!-- <padding-->
|
|
<!-- android:left="@dimen/dp_10"-->
|
|
<!-- android:right="@dimen/dp_10" />-->
|
|
</shape> |