我剛剛添加了一個新的xml文件到我的android項目,並開始得到錯誤'R無法解析爲 變量'。當我谷歌和堆棧溢出時,有很多問題和答案。當我清理項目時,會自動生成一個與我的資源文件夾('res')具有相同名稱的新空文件夾。資源文件夾在Android中自動複製
此外,我發現我的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>
在此先感謝您的幫助。
我刪除了導致錯誤的XML文件,問題依然存在。 – jjpp
檢查'R.java'是否沒有被導入你的班級。如果是這樣,刪除它,清理項目並嘗試再次運行它。 – Kristopher
它不是進口。現在,我在eclipse中的所有項目中都遇到同樣的錯誤。 – jjpp