Where to register a ContentObserver which must run

2019-09-14 18:34发布

问题:

Here is how I am registering a ContentObserver to listen to sent sms:

SendSmsObserver smsObeserver = (new SendSmsObserver(new Handler(), context));
ContentResolver contentResolver = context.getContentResolver();
contentResolver.registerContentObserver(Uri.parse("content://sms"), true, smsObeserver);

This is the SendSmsObserver class:

class SendSmsObserver extends ContentObserver {

private Context context;

SendSmsObserver(Handler handler, Context context) {
    super(handler);
    this.context = context;
}

@Override
public void onChange(boolean selfChange) {
    super.onChange(selfChange);
    queryLastSentSMS();
}

Now the question is that where should I put the top three lines of code? Currently I am writing it in the Activity's OnCreate method. But by doing this I am calling it every time the app is launched. I don't know if it is bad practice or not.

My requirement is that I should listen for sent sms outside my Activity lifecycle. This is working as expected, but should I always register it in the OnCreate method? Also I want to put the same lines in the onReceive() of a BroadcastReceiver to ensure that I am listening after rebooting the device.

UPDATE: BroadcastReceiver is somehow not registering the ContentObserver. I also tried to use getApplicationContext() as a context in BroadcastReceiver but to no avail.

回答1:

You could create a service that runs indefinitely in the background (Start sticky). In this service you can add your content observer (first 3 lines). This way you ensure that the service is still working after the user closes the app.

You can start this service in the OnCreate of your application class, and also in the broadcast receiver to make sure that it runs after the phone is rebooted.



回答2:

You should put those 3 lines of code in a foreground service.

Running a service in the background and keeping it "sticky" no longer works in newer version of Android for your scenario. The system will kill your background service eventually if your main app has been destroyed. The only way that has worked for me is to run a foreground service, which means there is a permanent notification. With this method, I was able to have my contentobserver run indefinitely as long as the foreground service was running.

I am still looking for a way to run a background service forever, and just fyi the following link does not work, Android will send a couple of broadcasts to restart service but eventually it will fail due to trying to start that service too many times.

https://fabcirablog.weebly.com/blog/creating-a-never-ending-background-service-in-android