我能够将 ActionBarSherlock 和 HoloEverywhere 都导入到 Android Studio 中,但我无法编译我的应用程序。

截屏:
https://docs.google.com/file/d/0BwOn70drOiMfZHZVeXdEVzNXRXc/edit?usp=sharing

无论出于何种原因,我的 Intent 似乎都被吓坏了,即使库导入似乎工作正常,我也在尝试模拟我的应用程序时遇到以下错误:

java: /Users/patdugan/usmc-pro-fitness-abs-he/src/com/patdugan/usmcprofitness/USMCProFitMainActivity.java:16: package org.holoeverywhere.widget does not exist

有人有什么想法吗?

最佳答案

我刚刚有这个问题。

您需要做的是转到 File > Project Structure... 并单击 Modules 。确保 ActionBarSherlock 在其 Dependencies 选项卡下有支持库。如果没有,请单击底部的加号并添加一个库(您可能需要单击 New Library... 以选择子项目中的 libs 文件夹)。

完成此操作后,将范围更改为 Provided,以便在编译应用程序时不会出现 lib 冲突。

10-08 14:26