[android-developers] Re: GpsStatus

2009-07-12 Thread kalyan
thanks john coryat... that was a great piece of code.. can you please tell me as how to achieve this in android 1.1 ??? we dont have GPSSatellites or GPSStatus in 1.1... kindly help!! Thanks in advance!! --~--~-~--~~~---~--~~ You received this message because you

[android-developers] Re: GpsStatus

2009-07-11 Thread Mark Murphy
Maps.Huge.Info (Maps API Guru) wrote: > Answered my own question, but now I have another... > > In this code: (which works fine) > > case GpsStatus.GPS_EVENT_SATELLITE_STATUS: > GpsStatus xGpsStatus = locMgr.getGpsStatus(null) ; > Iterable iSatellites = xGpsStatus.getSatellites() ; >

[android-developers] Re: GpsStatus

2009-07-11 Thread Maps.Huge.Info (Maps API Guru)
Excellent! That removed the warning. Thanks... I haven't seen any examples of this code anywhere, so for those that want to get detailed information about the status of a GPS fix, this code works. -John Coryat On Jul 11, 1:02 pm, Mark Murphy wrote: > Maps.Huge.Info (Maps API Guru) wrote: >

[android-developers] Re: GpsStatus

2009-07-11 Thread Maps.Huge.Info (Maps API Guru)
Answered my own question, but now I have another... In this code: (which works fine) case GpsStatus.GPS_EVENT_SATELLITE_STATUS: GpsStatus xGpsStatus = locMgr.getGpsStatus(null) ; Iterable iSatellites = xGpsStatus.getSatellites() ; Iterator it = iSatellites.iterator() ;