I set an alarm to remind me in android that it works when the device is turned on. But when I turn off the device and again on this reminder, the alarm does not work. Can you guys suggest me how to solve this problem?
My code looks like this:
Intent myIntent = new Intent(getApplicationContext(), serviceclass.class); PendingIntent pendingIntent = PendingIntent.getService(getApplicationContext(), CONST+id, myIntent, PendingIntent.FLAG_UPDATE_CURRENT); Calendar calender = Calendar.getInstance(); calender.setTimeInMillis(System.currentTimeMillis()); calender.set(Calendar.HOUR_OF_DAY, hours); calender.set(Calendar.MINUTE, ireminder.getMin()); calender.set(Calendar.SECOND, 0); calender.set(Calendar.MILLISECOND, 0); calender.set(Calendar.DAY_OF_WEEK, day); alarmManager.setRepeating(AlarmManager.RTC_WAKEUP, calender.getTimeInMillis(), 7 * AlarmManager.INTERVAL_DAY, pendingIntent);
source share