我正在尝试通过LocationManager设置一个快速而肮脏的GPS查找,它每半秒取一个网络位置(500米内),持续十秒钟。换句话说,我只是试图找到正确的粗标准设置和正确的逻辑,以便在我的处理程序线程中10秒内没有更好的位置后停止检查。
我认为我的主循环应该是这样的:
/**
* Iteration step time.
*/
private static final int ITERATION_TIMEOUT_STEP = 500; //half-sec intervals
public void run(){
boolean stop = false;
counts++;
if(DEBUG){
Log.d(TAG, "counts=" + counts);
}
//if timeout (10 secs) exceeded, stop tying
if(counts > 20){
stop = true;
}
//location from my listener
if(bestLocation != null){
//remove all network and handler callbacks
} else {
if(!stop){
handler.postDelayed(this, ITERATION_TIMEOUT_STEP);
} else {
//remove callbacks
}
}
}
我想知道的是,在我将最后一个已知位置作为我的初始最佳位置并启动我的线程后,如何设置粗略标准,以便我收到比初始标准更准确的位置(按顺序)比较两者的新鲜度,这通常与我目前的位置截然不同?
答案 0 :(得分:2)
您正在寻找的是询问设备获取粗略位置的最佳条件。
Criteria criteria = new Criteria();
criteria.setAccuracy(Criteria.ACCURACY_COARSE); // Faster, no GPS fix.
String provider = locationManager.getBestProvider(criteria, true); // only retrieve enabled providers.
然后只需注册一个监听器
locationManager.requestLocationUpdates(provider, ITERATION_TIMEOUT_STEP, MIN_LOCATION_UPDATE_DISTANCE, listener); //listener just implements android.location.LocationListener
在监听器中,您会收到更新
void onLocationChanged(Location location) {
accuracy = location.getAccuracy(); //accuracy of the fix in meters
timestamp = location.getTime(); //basically what you get from System.currentTimeMillis()
}
此时我的建议是仅根据准确度进行排序,因为您无法在10秒内改变您的位置,但粗略的位置更新在准确度上差异很大。
我希望这会有所帮助。