I noticed that applications like GPS status are quickly fixed. When I try to get a fix in my own application, it takes more time. Does anyone know why this is happening? Do they use the hidden part of the API to speed up the GPS connection?
Here i use
LocationManager loc = (LocationManager) context .getSystemService(Context.LOCATION_SERVICE); loc.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, listener);
I want the GPS to give results as often as possible, because I need this for the AR application :) Although I set the settings as 1000 ms and 1 m for the update frequency without a noticeable difference in the speed of correction.
android gps
Martin marinov
source share