当前位置: 代码迷 >> Android >> @color/white有关问题
  详细解决方案

@color/white有关问题

热度:122   发布时间:2016-05-01 18:02:53.0
@color/white问题
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>

------解决方案--------------------
探讨

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

这个XML文件也是要放在layout下吗?
  相关解决方案