<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<gradient
android:startColor="#A1887F"
android:endColor="#4E342E"
android:angle="90"
android:type="linear"
/>
<corners
android:radius="20dp"
/>
<stroke
android:color="#FFFFFF"
android:width="3dp"
/>
</shape>
当我编译此代码时,我收到错误正如我在标题上提到的那样。上面代码的错误是什么?