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.