@color/white有关问题

@color/white问题android:background@color/white 提示错误:error: Error: No resource found that mat

@color/white问题
android:background="@color/white" 提示错误:
error: Error: No resource found that matches the given name (at 'background' with value '@color/
white').
这要怎样解决?

[解决办法]
你没有那个资源啊。。。。
自己创建个color.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="white">#FFFFFF</color>
</resources>

[解决办法]

探讨

引用:
android:background="@color/white" 提示错误:
error: Error: No resource found that matches the given name (at 'background' with value '@color/
white').
这要怎样解决?

这个XML文件也是要放在layout下吗?