我在尝试使用颜色资源时遇到 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 文件中仍然无法识别颜色资源。