使用 11 之前的 Loader em API 版本

发布于 2024-12-08 19:56:09 字数 382 浏览 1 评论 0原文

我正在使用 CursorAdapterContentProvider,并且我想使用 CursorLoader,因此我重新配置了我的项目以定位 API 11 并设置 min-sdk -ver 到 7。但是,当 Activity 调用使用 CursorLoader 的子Activity 时,它会崩溃。该错误是通过 IllegalStateException 传递的 NoClassDefFoundError

我的问题是,即使我们有相同的配置,我们是否可以在以前的 Android 版本中使用 Honeycomb API?

I am using a CursorAdapter and ContentProvider, and I want to use CursorLoader, so I reconfigured my project to target API 11 and set min-sdk-ver to 7. However it crashes when an Activity calls a sub-Activity which uses the CursorLoader. The error is NoClassDefFoundError delivered via IllegalStateException.

My question is can we use Honeycomb APIs in previous Android versions even if we have the same configs a have?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

身边 2024-12-15 19:56:09

如果您希望在支持 API Level 11 之前的设备的 Android 应用程序中使用 CursorLoader,则需要使用 Android 兼容性库 (ACL)。您可以通过 SDK 和 AVD Manager 下载该文件,并将 JAR 从 SDK 安装复制到您的项目中。然后,您需要使用 support.v4 版本的加载器类,并继承自 FragmentActivity,这样您就可以调用 getSupportLoaderManager() 来获取您的 LoaderManager 的 ACL 版本。

这篇博文(简要)描述了 ACL。使用 CursorLoader 的示例应用程序与 ACL 本身一起打包。您还可以查看有关使用 ACL 版本的 CursorLoader 的教程

If you wish to use CursorLoader in an Android application supporting pre-API Level 11 devices, you will need to use the Android Compatibility Library (ACL). You can download that via the SDK and AVD Manager and copy the JAR from your SDK installation into your project. Then, you will need to use support.v4 versions of the loader classes, plus inherit from FragmentActivity, so you can call getSupportLoaderManager() to get your ACL edition of the LoaderManager.

This blog post describes (briefly) the ACL. A sample app using CursorLoader is found packaged with the ACL itself. You can also review a tutorial on using ACL's edition of CursorLoader.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文