1

我想在我的应用程序中使用UnifiedPreference库。我已将该库导入我的工作区,然后通过将新项目添加为属性 -> Android 下的库,将其添加到我现有的项目中。但是,当我尝试构建来自 UnifiedPreference 项目的项目时,出现以下错误:

安慰:

[2013-04-08 23:06:29 - unified-pref-library] ERROR: In <declare-styleable> PreferenceHeader, unable to find attribute icon
[2013-04-08 23:06:29 - unified-pref-library] ERROR: In <declare-styleable> PreferenceHeader, unable to find attribute title

相关的 logcat 错误似乎是:

PreferenceHeader_title cannot be resolved or is not a field UnifiedPreferenceHelper.java    /unified-pref-library/src/net/saik0/android/unifiedpreference   line 435    Java Problem
PreferenceHeader_title cannot be resolved or is not a field UnifiedPreferenceHelper.java    /unified-pref-library/src/net/saik0/android/unifiedpreference   line 299    Java Problem

我是否错误地导入了库?我已经尝试清理和构建这两个项目而没有任何改变。

4

2 回答 2

0

想通了,似乎 UnifiedPreference 需要 ActionBarSherlock 的依赖项。感谢 tttony 让我走上正轨。

于 2013-04-09T08:53:22.857 回答
0

在 Eclipse 中:

  1. Package Explorer
  2. 右键单击您的Proyect>Properties
  3. 选择:Java Build Path
  4. 选择并启用Android Dependencies
  5. 放在列表的顶部
  6. 点击:OK
于 2013-04-09T02:01:35.673 回答