我創建的源文件:loadanim.xml:修改xml文件時R無法解析爲變量?
<?xml version="1.0" encoding="utf-8" ?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/abc1" android:duration="60" />
<item android:drawable="@drawable/abc2" android:duration="60" />
</animation-list>
當我建,R不能自動根。混亂的錯誤:R可以不能解決.... 但是,當我在文件中明確<item>
:
<?xml version="1.0" encoding="utf-8" ?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android">
//Clear
</animation-list>
,並內置>> R級創建。 現在,我可以做什麼? 那麼差...
你在使用eclipse嗎?如果是的話,就試試這個,項目 - >自動生成 - >打勾。之後,只需在你的xml文件中做任何你想要的。並且,保存它。一旦清理你的項目。 – Praveenkumar
清理並刷新您的項目,也許它會生成.. –
@SpK:不工作,當我保存並且沒有構建時>>運行,mes錯誤:「生成最終存檔時出錯:java.io.FileNotFoundException:... \ resources .ap_不存在「。當我清理和建立>>> R connot解決... – user1465351