Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a broadcast receive declared in my android app's manifest file. Everything works ok. However, when the App is shut down (via the "Force Stop" button in the Android settings), the broadcast receiver still responds to broadcasts and fires up my Application again.

Any idea on how I can stop this?

Thanks

share|improve this question

3 Answers

up vote 1 down vote accepted

There is already an answer to that.

Basically you disable the Broadcast Receiver via the PackageManager in the onDestroy method of your Application class and enable it again in the onCreate Method of your Application class.

share|improve this answer
Thanks, this works, however is this the correct thing to do? – jtnire Mar 23 '12 at 12:17

Call unregisterReceiver in the Activity's onDestroy method and onPause(). Register it in onCreate() and OnResume().

share|improve this answer
As mentioned in the question, I'm using the Manifest for my receivers. – jtnire Mar 23 '12 at 12:17

Application doesn't have onDestroy method. It has onTerminate but it's never called =(

Here is my solution. I have MainActivity in my app which for sure have to be active if app working. So in broadcast receiver I always check if MainActiviy is running.

    public void onReceive(final Context context, final Intent intent)
    {
        if(isAppRunning(context))
        {
            // Do my handling
        }
        else
        {
            // You can disable receiver here
            Log.w(LOGTAG, "App not running. Ignore " + LOGTAG + " call.");
        }
    }

protected boolean isAppRunning(Context context) { String activity = MainActivity.class.getName(); ActivityManager activityManager = (ActivityManager)context.getSystemService(Context.ACTIVITY_SERVICE); List<RunningTaskInfo> tasks = activityManager.getRunningTasks(Integer.MAX_VALUE); for(RunningTaskInfo task : tasks) { if(activity.equals(task.baseActivity.getClassName())) { return true; } } return false; }

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.