1

我在尝试使用颜色资源时遇到 lint 错误。根据文档,以下内容应该是有效的。

<?xml version="1.0" encoding="utf-8"?>
<resources  xmlns:android="http://schemas.android.com/apk/res/android">
    <color name="actionbar_title"></color>
</resources>

但这给出了“属性缺少 Android 命名空间前缀”。修改为

<?xml version="1.0" encoding="utf-8"?>
<resources  xmlns:android="http://schemas.android.com/apk/res/android">
    <color android:name="actionbar_title"></color>
</resources>

清除错误,但在布局文件中有以下定义

<TextView android:id="@+id/title"
          android:layout_height="wrap_content"
          android:layout_weight="1"
          android:layout_width="0dp"
          android:textAppearance="?android:attr/textAppearanceMedium"
          android:textColor="@color/actionbar_title" />

给出错误“错误:错误:找不到与给定名称匹配的资源(在'textColor',值为'@color/actionbar_title')。

任何和所有的帮助将不胜感激。

编辑:正如 type-a1pha 所指出的,上面没有指定颜色 - 我是从测试版本中复制的。然而

<?xml version="1.0" encoding="utf-8"?>
<resources  xmlns:android="http://schemas.android.com/apk/res/android">
    <color android:name="actionbar_title">#ffffff</color>
</resources>

给出 lint 警告

Unexpected text found in layout file: "#ffffff"

但是在布局 xml 文件中仍然无法识别颜色资源。

4

3 回答 3

2

您需要实际定义颜色:

<color name="white">#FFFFFF</color>

也就是说,给出它的十六进制代码。

于 2013-07-18T23:18:33.407 回答
0

您应该将文件放在“values”文件夹而不是“color”文件夹下。

于 2014-08-10T14:06:46.893 回答
0
<color name="actionbar_title"></color>

我看到的颜色是空的。

<color name="actionbar_title">#000000</color>
于 2013-07-18T23:19:17.103 回答