0
I am declaring so in my project and can not recognize the variable "Cannot resolve Symbol 'Calendar'"
Calendar calendario= new Calendar.getInstance();
0
I am declaring so in my project and can not recognize the variable "Cannot resolve Symbol 'Calendar'"
Calendar calendario= new Calendar.getInstance();
5
Use:
Calendar calendar = Calendar.getInstance();
Do not use new, after all getInstance is a static method.
Browser other questions tagged android
You are not signed in. Login or sign up in order to post.