读书人

@color/white有关问题

发布时间: 2012-08-17 02:08:34 作者: rapoo

@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下吗?

读书人网 >Android

热点推荐