首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

@color/white有关问题

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

热点排行