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 want to check new messages every 10 mins in the background using alarmManager/Service(I have written the code for the same) but since service runs even if the app is alive or dead .I want the service to stop if app is not running in the background .How do I do this ?

Please Help. Thanks in Advance.

share|improve this question

1 Answer

up vote 1 down vote accepted

Stop your service on the onPause state of your activity.

Visit http://developer.android.com/reference/android/app/Service.html for more details about services.

For AlarmManager visit http://developer.android.com/reference/android/app/AlarmManager.html for more deailts. There you can find cancel method to remove any alarm that matches your intent.

share|improve this answer
if it stops at onPause() then it will not update in the background when you press home button right ? – James Patrick Feb 21 at 11:15
Yes. It is a usual practice to start your service in onResume and stop in onPause. You can read the activity life cycle of android activity in more details here – Arman Feb 21 at 11:32
I would like to stop service onDestroy() how do I stop the service? – James Patrick Feb 21 at 11:39
Have you read the life cycle activity of an android activity? It is not guaranteed that onDestroy is called by the system. To stop the service call stopService(intent). Read this developer.android.com/reference/android/content/… – Arman Feb 21 at 11:47
instead of stopping the service I am using cancel(pending intent) when user exits the app.Is that good ? – James Patrick Feb 21 at 19:25
show 1 more comment

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.