I'm developing an android application which requires background updates of my location.
I don't know how I can run my app running on background.
|
I'm developing an android application which requires background updates of my location. I don't know how I can run my app running on background. |
|||||||||||||
|
|
You should use the Service class, how it works and documentation can be found here. http://developer.android.com/reference/android/app/Service.html The service is like an Activity but with no UI and it can be run in the background even when the user is using other applications. Regards |
|||
|
|