I'm declaring this in my project and can not recognize the calendar variable "Can not resolve symbol 'Calendar'"
Calendar calendario= new Calendar.getInstance();
I'm declaring this in my project and can not recognize the calendar variable "Can not resolve symbol 'Calendar'"
Calendar calendario= new Calendar.getInstance();
Use:
Calendar calendar = Calendar.getInstance();
Do not use new , after all getInstance is a static method.