So I just created an app and the MainActivity.java already has compiler errors:
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_start_screen);
    mVisible = true;
    mControlsView = findViewById(R.id.fullscreen_content_controls);
    mContentView = findViewById(R.id.fullscreen_content);
The error is
cannot resolve symbol 'r'
I saw this question can not resolve R in android studio? , but it cleaning and rebuilding my project did not yeild any results.
 
     
     
     
     
    