R.java missing, R cannot be resolved to a variable, even if no mistake in xml files

前端 未结 4 807
忘了有多久
忘了有多久 2020-12-22 10:11

I am new to android, started my programming basics. I am getting error as \"R cannot be resolved to a variable\" and R.java file is missing even i have clea

4条回答
  •  情话喂你
    2020-12-22 10:49

    Just delete this line from your java file,

    import android.R;
    

    and add this line at that place ,

    import com.bis.databasedemo.R;
    

    Hope this will help you.

提交回复
热议问题