R cannot be resolved - Android, no import android.R; statement

前端 未结 10 1110
没有蜡笔的小新
没有蜡笔的小新 2020-12-11 03:55

Ok, I am working on a new app and everything worked fine as long as I used a Relative View. However, I want a tabbed layout so I switched what I had (not much so far since

10条回答
  •  既然无缘
    2020-12-11 04:48

    If anything in your 'res' directory is named using illegal characters, this can happen.

    Note that android only allows lower case letters (no capitals!!!), numerals, and the underscore. THAT'S ALL!

    Almost every operating system allows other characters, so moving a file into your 'res' directory can easily create this problem.

    Fix? Rename the file. This is done by right-clicking the file in your package or project explorer and selecting Refactor->Rename. You may need to clean your project after, but beware of the dreaded "import android.R" that may creep in.

    Good luck! -scott

提交回复
热议问题