I have braodcastreceiver, that broadcast receiver shall schedule an alarm.
Usually I would do
AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE);
am.set(AlarmManager.RTC, time, myPendingIntent);
The problem is that getSystemService is not available in a Broadcast receiver only in an Activty. How would I do it here?
Thanks, A.
AndyAndroid,
getSystemService()
is part of theContext
. You will need to save theContext
you receive in youronReceive()
method like so...Then..where you call
getSystemService()
you use...