有没有办法在 Eclipse 上重置 R.java 以进行 Android 应用程序开发?

发布于 2024-10-08 22:10:15 字数 125 浏览 3 评论 0原文

R.java 没有响应。我在 res/layout 中做了 4 个布局,它需要 3 个布局,但第 4 个布局没有响应

如果我编辑 R.java 它会停止重新生成代码吗?

R.java is not responding. I made 4 layouts in res/layout and it took 3 layouts but not responding for 4th

If i edit the R.java will it stop regenerating the code ?

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

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

发布评论

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

评论(3

潜移默化 2024-10-15 22:10:15

项目>>干净的...
这将强制 Eclipse 删除并重新生成 R.java 文件。

Project > Clean...
This will force Eclipse to delete and regenerate the R.java file.

夏至、离别 2024-10-15 22:10:15

刚刚遇到同样的问题。删除

Import android.R;

这应该可以解决问题并重新验证所有引用。

Just came across same problem. Delete

Import android.R;

This should fix the problem and have all references re validated.

饭团 2024-10-15 22:10:15

检查所有资源是否有错误。确保您的 Drawable 文件夹中没有子文件夹,确保所有资源名称仅包含小写字母、数字和下划线,确保您使用的任何 ninepatch 图像都是正确的(使用 SDK 文件夹中的 tools/draw9patch) 。对这些进行任何更改后清理您的项目。

如果您找不到任何看起来不合适的东西,请开始删除您添加的所有资源,首先删除最近的资源,并在每次删除后进行清理,看看问题是否消失。如果拔出一个后它就消失了,那么该资源就有问题了。

Check all of your resources for errors. Make sure there are no subfolders in your Drawable folders, make sure all resource names contain only lowercase letters, numbers, and underscores for their names, make sure any ninepatch images you're using are correct (use tools/draw9patch in your SDK folder). Clean your project after any changes to these.

If you can't find anything that looks out of place, start removing any resources you've added, removing the most recent first, and cleaning after each removal, and see if the problem goes away. If it goes away after pulling one out, then there's a problem with that resource.

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