• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Background application

You can set your application to be persistant in your AndroidManifest.xml file. Then the program won't be destroyed when you send it to the background.

But for regular data pulling you really should use services.
 
Yeah I confirm, only a service will be able to do what you want, there are some usefull tuto on the net... but the easier way to learn, is to take an opensource code to see how it s made.
+
 
Just to elaborate, a service does NOT require a supportive activity... You can have an app that runs strictly as a service...
 
Back
Top Bottom