有没有办法在 Eclipse 上重置 R.java 以进行 Android 应用程序开发?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
项目>>干净的...
这将强制 Eclipse 删除并重新生成 R.java 文件。
Project > Clean...
This will force Eclipse to delete and regenerate the R.java file.
刚刚遇到同样的问题。删除
这应该可以解决问题并重新验证所有引用。
Just came across same problem. Delete
This should fix the problem and have all references re validated.
检查所有资源是否有错误。确保您的 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.