0
I’m facing a problem, it seems to be a bit simple, but I’m already a few hours into it.
I’m mounting a project on android Studio and the Same is giving in the field private UserLoginTask mAuthTask = null
;
// UI references.
private AutoCompleteTextView mEmailView;
private EditText mPasswordView;
private View mProgressView;
private View mLoginFormView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_login_);`
on the line setContentView(R.layout.activity_login_)
R Stays in red and does not compile the project.
I’ve searched several tutorials including what they say to go in Build > Clean and in Rebuild, I also reviewed Project Struture but without success
Would anyone know what that could be Ever since I’m so grateful
Place the write cursor next to R, from alt + enter and see if the import option appears, if yes, just click on it and that’s it
– Woton Sampaio
Now when a new Activity is created, it does not automatically import
– Woton Sampaio