R.java 被删除时生成 android-support-v4 错误

发布于 2024-12-17 04:49:10 字数 307 浏览 2 评论 0原文

好的,我正在遵循步骤。

1-从现有源创建新项目

2-选择 Android\android-sdk\extras\android\compatibility\v4\samples\Support4Demos

3-完成

因此,我美丽的 Eclipse 创建了该项目,但他从 gen 中删除了 R.java 类我从包的每个类中收到错误。我

还认为,style.xml 给了我一些错误。

这简直要了我的命,因为三天来我无法从中学到任何东西,而且我的朋友谷歌也没有帮助解决这个问题。

提前谢谢!

ok, steps im following.

1-create new project from existing source

2-select Android\android-sdk\extras\android\compatibility\v4\samples\Support4Demos

3-finish

So, my beautiful eclipse creates the project but he erase the R.java class from gen so i get errors from every class of the package. I thing

Also, style.xml give me some error.

This is killing me because i can learn nothing from this for 3 days and i my friend google is not helping with this.

thx in advance!

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

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

发布评论

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

评论(4

夏夜暖风 2024-12-24 04:49:10

我在 Eclipse 中尝试了同样的操作,我看到大多数文件都导入失败:

import android.support.v4.app.DialogFragment;
import android.support.v4.app.FragmentActivity;

因此​​,我修复它的方法是:

  1. 右键单击​​左侧导航菜单中的项目(“Support4Demos”) 。
  2. 单击“属性”。
  3. 单击左侧导航窗格中的“Java 构建路径”。
  4. 单击右侧的“添加外部 Jars”按钮。
  5. 导航到:“\android-sdk\extras\android\compatibility\v4”
  6. 选择“android-support-v4.jar”,然后单击“打开”,然后单击“确定”。
  7. 左键单击您的项目(“Support4Demos”)。
  8. 单击顶部的“项目”,然后单击“清理”,然后单击“确定”。

最后两个步骤可能不需要。但当你做到这一切时,它可能会解决它。您还需要修复 XML 文件中的任何错误。

编辑:
试试这个:

  1. 右键单击您的项目并选择“属性”,
  2. 然后选择“Android”。
  3. 确保在 Android 3.2 或更高版本上进行设置。

Android 3.2 引入了 Holo 主题。

I tried the same thing in Eclipse, and I saw on Most every file, there was a failed import:

import android.support.v4.app.DialogFragment;
import android.support.v4.app.FragmentActivity;

So, what I did to fix it, was:

  1. Right click on your project ("Support4Demos") in the navigation menu on the left.
  2. Click 'Properties'.
  3. Click 'Java Build Path' on the left hand navigation pane.
  4. Click 'Add External Jars' button on the right.
  5. Navigate to: "\android-sdk\extras\android\compatibility\v4"
  6. Choose "android-support-v4.jar", then click 'Open', then click 'Ok'.
  7. Left Click on your Project ("Support4Demos").
  8. Click 'Project' at the top, then click 'Clean', then click 'Ok'.

The last two steps might not be needed. But when you do all this, it may fix it. You would also need to fix any error in the XML file.

EDIT:
Try this:

  1. Right click on your project and choose "properties"
  2. Choose 'Android'.
  3. Make sure it's set on Android 3.2 or higher.

Android 3.2 was when the Holo theme was introduced.

黎歌 2024-12-24 04:49:10

自 ADT 17.0.0 问题起,您应该将 android-support-vX.jar 放入 /libs 文件夹,如果您想在中应用 Holo 主题您的应用程序应使 AndroidManifest.xml 中的 targetSDKversion 至少等于 11

Since ADT 17.0.0 issue you should put android-support-vX.jar to /libs folder and if you want to apply Holo theme in your application you should make targetSDKversion in AndroidManifest.xmlequals 11 minimum

若能看破又如何 2024-12-24 04:49:10

由于 style.xml 中存在错误,R.java 消失了。修复 Style.xml 中的错误,R 将能够重新生成,并且一切都将膨胀。

编辑:

然后转到:

项目 ->干净的

R.java is gone because of the error you have in style.xml. Fix the error in Style.xml and R will be able to regenerate and all shall be swell.

EDIT:

Then go to:

Project -> Clean

写给空气的情书 2024-12-24 04:49:10

我禁用了自动更新,删除了 bin 和 gen 文件夹,进行了清理(将给出错误,只需忽略),修复了项目设置,添加了兼容性库,然后它就工作了:)

I disabeled automatic update, deleted bin and gen folder, cleaned (will give error just ignore), fixed project setup, added compatability library and then it worked :)

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