I have a problem with my calendar. Here is the code:
Calendar mCalendar = Calendar.getInstance(); mToday[0] = mCalendar.get(Calendar.DAY_OF_MONTH); mToday[1]
I do believe that the way you access the calendar is correct.
I'm guessing the int[] you try to add the values to is not initialized. You must call
int[]
int[] mToday = new int[3];