属性缺少Android名称空间前缀

the*_*ava 1 android

<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="#F0A0A0A0"/>
    **<stroke android:width="2dp" color="#A00080FF"/>**
    <padding android:left="5dp" android:top="0dp"
        android:right="5dp" android:bottom="1dp" />
</shape>
Run Code Online (Sandbox Code Playgroud)

我在粗线上得到了上述错误."属性缺少Android命名空间前缀"

Rag*_*dan 5

这个

  <stroke android:width="2dp" color="#A00080FF"/>
Run Code Online (Sandbox Code Playgroud)

应该

  <stroke android:width="2dp" android:color="#A00080FF"/> 
Run Code Online (Sandbox Code Playgroud)