我很久以前有一个已保存的
Android项目,现在我必须继续努力.
我在Android Studio中创建了一个新项目,我已经导入了其中的所有Java和XML文件,但缺少R.java文件.
我猜它没有保存原件.
我可以以某种方式恢复或生成它吗?
解决方法
R.java在Android Studio中与在Eclipse中完全不同.既然你说这是一个旧项目,我假设它最初来自Eclipse.在Eclipse中,R.java包含在源树中.但是,在Android Studio中,它被隐藏起来.从
another Stack Overflow answer开始:
1. build
This has all the complete output of the
make
process i.e. classes.dex,compiled classes and resources,etc.In the Android Studio GUI,only a few folders are shown. The important
part is that your R.java is found here under
build/source/<flavor>/r/<build type(optional)>/<package>/R.java
您根本不需要手动与R.java交互.它可以从源代码重新生成.因此,您可能不会遇到任何问题 – R.java将自动生成并且一切都会很好.如果不是,请尝试重建项目.