android:background="@color/white" 提示错误:
error: Error: No resource found that matches the given name (at 'background' with value [email protected]/
white').
这要怎样解决?
------解决方案--------------------
你没有那个资源啊。。。。
自己创建个color.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="white">#FFFFFF</color>
</resources>
------解决方案--------------------