Re: [android-developers] getting gps status events

2011-04-22 Thread lbendlin
*IIRC *If you have a mapView and you enable the MyLocationOverlay you get the same effect. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this

[android-developers] getting gps status events

2011-04-21 Thread Dave Cramer
Do you have to request location updates before gps status events will be sent? I added a listener for gps status events, but it never gets called. Dave -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] getting gps status events

2011-04-21 Thread Mark Murphy
On Thu, Apr 21, 2011 at 6:35 AM, Dave Cramer davecra...@gmail.com wrote: Do you have to request location updates before gps status events will be sent? AFAIK, yes. I added a listener for gps status events, but it never gets called. That's because nothing is asking for the GPS radio to turn

Re: [android-developers] getting gps status events

2011-04-21 Thread Igor Prilepov
You can request status update without location updates but the GPS status will be changed only if some other application did it. Therefore listening for the status updates without location notifications makes sense only for some kind of a background service when you want to save location

Re: [android-developers] getting gps status events

2011-04-21 Thread Dave Cramer
Thanks guys Dave On Thu, Apr 21, 2011 at 4:10 PM, Igor Prilepov iprile...@gmail.com wrote: You can request status update without location updates but the GPS status will be changed only if some other application did it. Therefore listening for the status updates without location notifications