CosmoCalendar
CosmoCalendar copied to clipboard
Can I change the starting week to Sunday?
Can I change the starting week to Sunday?
and Is there a way to know which date I chose when I chose the date?
- Can I change the starting week to Sunday?
Yes you can calendarView.setFirstDayOfWeek(Calendar.SUNDAY);
- Is there a way to know which date I chose when I chose the date?
Yes
calendarView.setSelectionManager(new SingleSelectionManager(new OnDaySelectedListener() {
@Override
public void onDaySelected() {
Date selectedDate = calendarView.getSelectedDays().get(0).getCalendar().getTime();
SimpleDateFormat format = new SimpleDateFormat("EEE MM-dd-yyyy");
try {
String nowAsString = format.format(selectedDate);
Date parsedDate = format.parse(nowAsString);
clickedDate = format.format(parsedDate);
}catch(Exception e){
}
}
}));