Question:
This is my colors.xml:
<?xml version="1.0" encoding="utf-8"?> <resources> <color name="white">#ffffff</color> </resources>
This gives me the following error: Attribute is missing the Android namespace prefix What can I change to make this error go away?
Solution:
<resources xmlns:android="http://schemas.android.com/apk/res/android"> >#FFFFFF</resources>