I'm launching an activity from a broadcast receiver using the Intent.FLAG_ACTIVITY_NEW_TASK flag.
My activity launches a CountDownTimer in its onCreate method. Pressing a key kills my app (I'm calling finish()) but my app appears in the task mgr.
If I'll open the task mgr and click on my app, the onCreate method is being called again and another instance of my timer is being called.
How can I prevent this behavior?
Thanks, Avi
You might have something like the code below in your app to start your countdown timer.
You could wrap an if statement around that to see if the countdown has started or not, if it has then set a boolean to true and if not set it to false (since the timer has stopped).