I need to check the accuracy of GPS... but when i use location.getAccuracy then it doesn not return me any value... Does it take time..If it takes time then how long does it takes?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
In android devices, mainly you can have two sources by which you can get position info :
You can get your accuracy info from
Once you've started getting fixes it won't take much time. Time to first fix can be 30 seconds to 15 minutes. It depends on your GPS chipset, terrain conditions, cold/warm start etc. To choose the best provider read this article |
|||
|
|
LocationManagerclass provides agetBestProvidermethod. It will give you the most accurate location provider automatically. Does that resolve your issue? – Zach Rattner Jul 2 '11 at 6:20