我有这个代码来获得最好的提供商
lm = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
locationListener = new MyLocationListener();
Criteria criteria = new Criteria();
criteria.setAccuracy(Criteria.ACCURACY_FINE);
String provider = lm.getBestProvider(criteria, true);
Location mostRecentLocation = lm.getLastKnownLocation(provider);
if(mostRecentLocation != null) {
latid=mostRecentLocation.getLatitude();
longid=mostRecentLocation.getLongitude();
}
lm.requestLocationUpdates(provider, 1, 0, locationListener);
然后是听众
private class MyLocationListener implements LocationListener {
@Override
public void onLocationChanged(Location loc) {
if (loc != null) {
latid = loc.getLatitude();
longid = loc.getLongitude();
// if(loc.hasAccuracy()==true){
accuracyd = loc.getAccuracy();
String providershown = loc.getProvider();
accuracy.setText("Location Acquired. Accuracy:"
+ Double.toString(accuracyd) + "m\nProvider: "+providershown);
accuracy.setBackgroundColor(Color.GREEN);
// }
userinfo=usernamevalue+"&"+Double.toString(latid)+"&"+Double.toString(longid);
submituserlocation(userinfo);
}
}
当我测试它到设备(htc magic)时,我发现当gps被禁用时,它会立即从网络锁定。当我启用gps时,它不会从网络中获取任何数据并等待它从gps锁定
我想锁定谷歌地图的位置,直到他们有一个很好的GPS信号,他们使用网络来确定我的位置。
我虽然最好的标准会这样做,但他们做的是选择一次提供者。
我的代码有什么问题,或者我必须做线程和超时等才能实现它?
答案 0 :(得分:14)
也许您可以尝试在一段时间内同时收听网络提供商和gps提供商,然后检查两者的结果。如果您没有gps的结果,请改用网络结果。这就是我做到的。
答案 1 :(得分:3)
也许您可以getBestProvider (Criteria criteria, boolean enabledOnly)
LocationManager
{{1}}使用this other thread中的条件。
请参阅official documentation。
希望有所帮助