[android-developers] Detecting an Uninitialized Location

2011-03-07 Thread Jake Colman
Is there a way to distinguish between an uninitialized Location object and one that actually represents a lat/long of 0.0? -- Jake Colman -- Android Tinkerer -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

Re: [android-developers] Detecting an Uninitialized Location

2011-03-07 Thread TreKing
On Mon, Mar 7, 2011 at 12:32 PM, Jake Colman col...@ppllc.com wrote: Is there a way to distinguish between an uninitialized Location object and one that actually represents a lat/long of 0.0? Try getTime() - that's probably something consistent for unintialized objects. Although