Android tutorial error: R cannot be resolved to a variable

前端 未结 12 609
野性不改
野性不改 2020-12-11 20:35

http://developer.android.com/training/basics/firstapp/building-ui.html

I have been following this tutorial, but I have two errors, both \"R cannot be resolved to a v

12条回答
  •  情深已故
    2020-12-11 21:15

    I'm working my way through the same example, and had the same (or very similar) problem.

    Finally I noticed that there was a tiny little red x on the manifest.xml. Sure enough, it was complaining about this:

    android:label="@string/title_activity_hello_world" >
    

    So I added:

    Hello World
    

    to strings.xml and now it works.

提交回复
热议问题