Android keep BroadcastReceiver in background

后端 未结 2 1059
猫巷女王i
猫巷女王i 2020-12-10 17:33

I created a BroadcastReceiver and it runs only when my app shown in recent apps menu. If I remove my app from the recent apps the BroadcastReceiver will stop working. How ca

相关标签:
2条回答
  • 2020-12-10 18:13

    Use a service with it. Services can survive when the app dies if they have the right flag example:

    public class MyService extends Service {
        public int onStartCommand(Intent intent, int flags, int startId) {
            return START_STICKY; //this defines this service to stay alive
        }
    @Override
    public void onCreate() {
        super.onCreate();
    
        appStatus = APPISUP;
    
        //This is a thread that stays alive for as long as you need
        new CheckActivityStatus().execute();
        //Not needed but in case you wish to lauch other apps from it
    }
    
    private class CheckActivityStatus extends AsyncTask<String, Integer, String> {
     @Override
        protected String doInBackground(String... params) {
            while(true) {
            ... //add something that breaks eventually
            }
        }
     }
    

    To lauch the service you have to lauch it from an activity like so:

    Intent service = new Intent(getBaseContext(), MyService.class);
        startService(service);
    

    With the service the BroadcastReceiver still functions receiving whatever you want. Note that the service sometimes stops and comes back. I haven't found out why but I'm betting on priorities of other apps that may ask the system to halt the service

    0 讨论(0)
  • 2020-12-10 18:17

    This is not how you should register a receiver. You receiver stops working, because you construct it in onCreate, which means it will live as long as your app is alive. When the app gets destroyed, you also lose the the receiver.

    If you register receiver inside an activity, you should always register it in onResume and deregister onPause, which will make it available while the activity is visible to the user. This is a use case when you want to have an active receiver while user interacts with an activity.

    If you want a background receiver, you need to register it inside the AndroidManifest (with intent filter), add an IntentService and start it when you receive a broadcast in the receiver.

    Here is a tutorial, you are interested in chapter 3.

    If you need to be always on, start a foreground service. There is function in Service that lets you: startForeground. Then register your receiver when service is created and deregister when it's destroyed. Foreground services are quite nasty though.

    0 讨论(0)
提交回复
热议问题