Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to save scheduled alarm after app was killed by Android or task killer?

Tags:

Code that schedules alarm.

    PendingIntent sender = PendingIntent.getBroadcast(this, id, intent, PendingIntent.FLAG_UPDATE_CURRENT);     AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE);     am.set(AlarmManager.RTC_WAKEUP, time, sender); 

Its working fine, but when I kill my app in task killer, I lost my scheduleed alarm. How to solve this problem?

like image 203
Divers Avatar asked May 06 '11 20:05

Divers


People also ask

How do I set alarm manager on Android?

This example demonstrates how do I implement alarm manager in android. Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project. Step 2 − Add the following code to res/layout/activity_main. xml.

How do I turn off alarm manager on Android?

In order to delete : AlarmManager alarmManager = (AlarmManager) getSystemService(Context. ALARM_SERVICE); Intent myIntent = new Intent(getApplicationContext(), SessionReceiver. class); PendingIntent pendingIntent = PendingIntent.


2 Answers

have your application broadcast a message as its being killed, and when this message is broadcast, then have a listener check if the service is still running.. if its not run it. This will insure that your service is running even if the application is killed.

Update

I'll try to create a flow diagram for you

Death/Restart of a service

The onDestroy() method is part of a service.

I hope this helps.

UPDATE 2

One thing I forgot to mention is the fact that you ideally only want one instance of the service to be run. So just looking at the ID that is present within the onStart() should be == to 1 to start it else.. ignore it.

Methods of notice of the Service Class:

onStart() : This method is called when the service is being started

onDestroy() : This is the method that is called when a service is being killed

Methods of notice of the BroadcastReciever class:

onReceive(): This methods receives all intents that are sent to it (unless filtered)

Look up examples on BroadcastRecievers (Message Broadcasting) and Service (Starting a service)

References:

http://developer.android.com/reference/android/content/BroadcastReceiver.html

http://developer.android.com/reference/android/app/Service.html

like image 191
JoxTraex Avatar answered Oct 12 '22 14:10

JoxTraex


Alarm set by alarm manager is not killed when app is closed, how ever when a reboot occurs all alarms are cleared by the os since there is no persistence. So you need to do the persistence.

  • Every Time while setting a alarm save the alarm time.
  • Register a receiver for boot completion.
  • Set the alarm again on reboot.

    public class BootReceiver extends BroadcastReceiver {      @Override     public void onReceive(Context context, Intent intent) {         //re register the alarm    } } 

Manifest.xml

<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> ....... <receiver       android:name="BootReceiver"         android:enabled="true"         android:exported="true"         >         <intent-filter>             <action android:name="android.intent.action.BOOT_COMPLETED" />         </intent-filter>     </receiver> 

You could use SharedPreference to save the time (time at when the alarm should be triggered or time at when it should be triggered next)

Use that to set a new alarm at the boot receiver.

like image 23
Sree Vishnu Avatar answered Oct 12 '22 15:10

Sree Vishnu