Skip to content Skip to sidebar Skip to footer

How To Run Android Application In Background

Possible Duplicate: how to run application in background in android? i am doing project using location manager if my location latitude and longitude equal to the same which is i

Solution 1:

You have coded in Activity, I suggest you to changed it to Android Service. A Service is a component which runs in the background, without interacting with the user.

Have a look at Vogella's Service Example.

Just Convert your Activity code into Android Service and it will work in background without any GUI.

Post a Comment for "How To Run Android Application In Background"