我刚刚在我的 android 项目中添加了一个新的 xml 文件并开始收到错误“R 无法解析为变量”。当我用谷歌搜索它以及堆栈溢出时,有很多问题和答案。当我清理项目时,会自动生成一个与我的资源文件夹('res')同名的新空文件夹。
我也发现我的 xml 文件中没有错误。我还发现生成的java文件夹是空的。对于 eclipse 中的所有项目,我都遇到了同样的错误。
可能是什么问题呢?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
</LinearLayout>
提前感谢您的帮助。