Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've made an Android app that plays a radio stream. It works well, low cpu and ram consumption. But if I open other apps like Facebook or even browse the internet, sometimes my radio application gets killed.

Is there a way I can prevent this from happening?

share|improve this question
No, It's how Android works. You could think about a service. developer.android.com/reference/android/app/Service.html – Simon Oct 2 '12 at 9:00

1 Answer

Generally no, but you have a good chance of staying alive by using a foreground service. This will show an ongoing notification, letting users know that your app is running. The system gives higher priority to those apps and they will be among the last to be killed if resources become scarce.

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.