main cannot be resolved or is not a field

前端 未结 9 1347
盖世英雄少女心
盖世英雄少女心 2020-12-07 20:44

This error occurs in setContentView line in this code snippet:

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedI         


        
9条回答
  •  北海茫月
    2020-12-07 21:34

    If you are using eclipse, then

    1. Delete all your import statements from the class where you are getting this error message.

    2. press CTRL + SHIFT + O --> OR select Source from menu and select Organize import. This will import all the necessary classes.

    Note: Since you have a local R.class file, it will import your local file instead of the android.R file.

    Hope this will help someone.

提交回复
热议问题