21 lines
688 B
XML
21 lines
688 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:shape="rectangle">
|
|
<gradient
|
|
android:angle="45"
|
|
android:endColor="#338282EB"
|
|
android:startColor="#338282EB" />
|
|
|
|
<!-- 圆角的幅度 -->
|
|
<corners
|
|
android:bottomLeftRadius="@dimen/dp_8"
|
|
android:bottomRightRadius="@dimen/dp_8"
|
|
android:topLeftRadius="@dimen/dp_8"
|
|
android:topRightRadius="@dimen/dp_8" />
|
|
|
|
<!-- <padding-->
|
|
<!-- android:bottom="@dimen/dp_8"-->
|
|
<!-- android:left="@dimen/dp_8"-->
|
|
<!-- android:right="@dimen/dp_8"-->
|
|
<!-- android:top="@dimen/dp_8" />-->
|
|
</shape> |