Re: [android-developers] Getting GPS values without LocationManager's onLocationChanged

2012-06-03 Thread Mark Murphy
GPS fixes will arrive at a rate determined by the GPS hardware and the environment. You cannot control this. Either adjust your code to deal with a variable rate of data, or make your own fixed interval polling loop, retrieving values from getLastKnownLocation(). You will still need to use request

[android-developers] Getting GPS values without LocationManager's onLocationChanged

2012-06-03 Thread Sumedh
Hi, I developed a code in which i want to access GPS values like lattitude, longitude, speed and date-time for every fixed interval. Currently I am using LocationManager's onLocationChanged() method to get those values. but I want those GPS values for fixed interval irrespective of any event. Is t