无法使用带有 Android 兼容包的 Fragment

发布于 2024-10-20 08:02:57 字数 248 浏览 11 评论 0原文

“面向所有人的片段”中,Xavier Ducrohet,Android SDK 技术负责人表示,谷歌通过 SDK Manager 发布了 Android 兼容包。

我已经安装了它,但是现在我该如何使用它呢?

如何在我的项目中集成Android兼容包?

In "Fragments for All", Xavier Ducrohet, Android SDK Tech Lead says Google releases an Android Compatibility Package by SDK Manager.

I've installed it, but, how can I use it now?

How can I integrate Android Compatibility Package in my project?

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

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

发布评论

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

评论(6

羁拥 2024-10-27 08:02:57

如果您使用的是 Eclipse Android 支持库版本 12 或更高版本,只需右键单击您的项目,然后选择 Android Tools >添加兼容性库...

If you're using version 12 or later of the Eclipse Android support library, just right-click on your project, and choose Android Tools > Add Compatibility Library...

呢古 2024-10-27 08:02:57

{yoursdkpath}/extras/android/compatibility/v4/ 目录中有一个名为 android-support-v4.jar 的 .jar 文件。将其复制到项目根目录中的 libs 文件夹中,并将该文件添加到 Eclipse 中的构建路径中。

There is a .jar file called android-support-v4.jar in the directory {yoursdkpath}/extras/android/compatibility/v4/. Copy this into your libs folder in the root of your project and add the file to the build path in Eclipse.

漫漫岁月 2024-10-27 08:02:57

总理,

我按照 Android 开发者博客< 上的 Fragments 示例进行操作/a> 使用片段创建“向后”兼容的应用程序。文章中简要提到了使用带有片段的布局的 Main 活动。

此活动的代码并不有趣;它只是使用给定的布局调用 setContentView() :

这里应该提到的是,该活动必须派生自 FragmentActivity 而不是 Activity 类。这让我有一段时间感到困惑。

祝你好运

Premier,

I followed the Fragments example on the Android Developers Blog to create a "backwards" compatible app using Fragments. In the article there is a brief mention of the Main activity that uses a layout with fragments.

The code for this activity is not interesting; it just calls setContentView() with the given layout:

What should be mentioned here is that this activity must derive from FragmentActivity and not Activity class. This threw me off for a while.

Good luck

如此安好 2024-10-27 08:02:57

检查“步骤 2:配置构建路径”部分此处< /a>

Check the "Step 2: Configuring the Build Path" Section here

溺渁∝ 2024-10-27 08:02:57

使用我下载的新 Eclipse,这很容易。如果您正确设置了 SDK 等的所有路径,请右键单击“项目”->“ Android工具->然后点击“添加兼容性库”,它将添加 JAR 文件

This is easy with new Eclipse I downloaded. Provided you have all the paths for SDK etc setup correctly, Right click on Project -> Android tools-> and Hit "Add compatibility Library" it will add the JAR file

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