I have been working on a Location - based app. Everything is ok except location implementation (That is the core point). I know location is so expensive but I couldn't handle this by taking into account battery consumption . Here is my current algorithm :

Step 1: Create an alarm manager with time interval of 1 minute.

Step 2: When alarm works start location listener

if(settings.getBoolean("use_gps", false))
        manager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, listener);
    manager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0,listener);
    manager.requestLocationUpdates(LocationManager.PASSIVE_PROVIDER, 0, 0,listener);

Step 3: Wait max 15 seconds for a location

Step 4: When a location is received, stop the location listener..

One of the problem is; due to 0 seconds, 0 meters location accuracy, CPU usage increases so badly(%45 CPU when alarm works(0-15 seconds of alarm)). But When I look at battery usage of my app, there is no strange increase, after 1-2 hours, batery usage is ~%4 - %5. Second problem is when the user wants to get location by GPS, due to getting a location by GPS is so long(comparing with network provider), I couldn't get a location by GPS.

I have implemented this algorithm after a lot of methods.

I am looking for recomondation from someone who has already implemented getting periodic location with low cpu usage succesfully.

Best regards.

link|improve this question

38% accept rate
feedback

1 Answer

Use receiver and service together. For this purpose you can find a complete sample in this link. There is a listener in it. Listener can be used in your activity to be noticed that a new location is ready for you. Also there is a service with an AlarmManager in it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.