实施 ActionbarSherlock
我正在尝试实现 SherlockActionbar。我从 GitHub 下载了该项目,并将该库作为项目导入,并使用 Android 2.2 作为基础 SDK。
但该项目似乎有很多错误。
我想我需要导入一些其他库。
I am trying to implement SherlockActionbar. I downloaded the project from GitHub and imported the library as a Project and using Android 2.2 as the base SDK.
But the Project seems to have a lot of errors.
Guess i need to import some other library.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用Android 3.2进行编译。该库需要访问 Honeycomb SDK 中的类,以便在 3.0+ 上运行时支持它。
尽管使用较新的 SDK 进行编译,您仍然可以通过将
minSdkVersion
设置为“8”来支持回 Android 2.2 。存储库中的每个示例(版本 3)都支持 Android 1.6。请查看其来源以获取更多信息和示例。
You need to compile with Android 3.2. The library needs access to classes from the Honeycomb SDK in order to support it when run on 3.0+
Despite compiling with the newer SDK, you can still support back to Android 2.2 by setting the
minSdkVersion
to '8'.Each of the samples in the repository (for version 3) support back to Android 1.6. Take a look at their sources for more information and examples.