I\'m trying to get the actual month from the Calendar using the following:
Calendar
Calendar c = Calendar.getInstance(); String time = String.v
I suggest trying
@Override public void onSelectedDayChange(CalendarView view, int year, int month, int day) { Toast.makeText(getApplicationContext(), month+1 + "/" + day + "/" + year, Toast.LENGTH_SHORT).show(); calDate = month+1 + "/" + day + "/" + year; } });