main cannot be resolved or is not a field

前端 未结 9 1352
盖世英雄少女心
盖世英雄少女心 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:30

    Also try: add

    import your.application.packagename.R;
    

    and run: eclipse->project->clean..

    The error should be gone.

提交回复
热议问题