How do I convert a month string to integer?
On click method I want to display the date which is selected but if the date has an event it should display something mo
Calendar cal = Calendar.getInstance(); cal.setTime(new SimpleDateFormat("MMM").parse("July")); int monthInt = cal.get(Calendar.MONTH) + 1;
See