1. 程式人生 > >【完美解決系列】解決Android Studio中找不到R檔案的問題

【完美解決系列】解決Android Studio中找不到R檔案的問題

找不到R檔案的問題分很多種,在這邊我僅提供我自己解決的方法。

在出現找不到R檔案時,有很多情況都是資原始檔引入不正確導致的問題,比如圖片、String等資源。

而在Android Studio中可以很快定位問題。

解決方法:

這裡寫圖片描述

如上圖,選中Build–>Rebuild Project 之後,編譯器自動就會提示你出錯的地方,如下:

Error:(47, 21) No resource found that matches the given name (at 'src' with value '@drawable/a_left').
Error:(48, 36) No resource found that
matches the given name (at 'contentDescription' with value '@string/start_a').

以上的問題就是圖片和string資源找不到才報錯的。根據提示找到對應的資原始檔修改就可以了。