I was making an app in android studio and i had no errors. I closed android studio but reopened it because i forgot to do something. when i went into my MainActivity.java i noticed the R was in red and i don't know why
this is the code in my java, it's not like there was something in it:
import android.support.v7.app.AppCompatActivity; import android.os.Bundle;
public class HomeMenu extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_home_menu);
}
}
can someone help me ?