Skip to content Skip to sidebar Skip to footer

Colors Xml: "attribute Is Missing The Android Namespace Prefix"

This is my colors.xml: #ffffff This gives me the foll

Solution 1:

try to add this...

<resourcesxmlns:android="http://schemas.android.com/apk/res/android"><colorname="white">#FFFFFF</color></resources>

Solution 2:

The error is in some other xml file where you have might have done color = "@color/white" instead of android:color = "@color/white"

I mean to say is that you have not used the prefix android in some other xml file

Post a Comment for "Colors Xml: "attribute Is Missing The Android Namespace Prefix""