shape的问题
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<!--
corners:设置圆角的半径
gradient:设置颜色渐变的过程
-->
<corners android:radius="5dp"/>
<gradient
android:startColor="@color/white"
android:endColor="@color/red"
/>
</shape>
<!-- 在我的代码中,gradient 不能设置color的属性。两个颜色都报错的 -->