AlarmManager at specific date and time
I'd like to show a dialog at specific date and time (25/12/2012 at 12.00) and I am using this code. I set like 11 month (because 0 is gen) but the alarm does not start. What is my mistake? Calendar cal=Calendar.getInstance(); cal.set(Calendar.MONTH,11); cal.set(Calendar.YEAR,2012); cal.set(Calendar.DAY_OF_MONTH,25); cal.set(Calendar.HOUR_OF_DAY,12); cal.set(Calendar.MINUTE,00); cal.set(Calendar.SECOND,0); Intent _myIntent = new Intent(context, Notify.class); PendingIntent _myPendingIntent = PendingIntent.getBroadcast(context, 123, _myIntent, PendingIntent.FLAG_UPDATE_CURRENT| Intent.FILL_IN