6

我遇到了一个奇怪的问题。我使用 wifi 来检索用户位置。我已经在几部手机上进行了测试;在其中一些上,我永远无法获得位置更新。似乎从未调用过 onLocationChanged 方法。我的代码附在下面..任何建议表示赞赏!!!

@Override
public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.main);

  LocationManager locationManager;
  locationManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);

  String provider = locationManager.NETWORK_PROVIDER;
  Location l = locationManager.getLastKnownLocation(provider);

  updateWithNewLocation(l);

  locationManager.requestLocationUpdates(provider, 0, 0,
                                       locationListener);
}

private void updateWithNewLocation(Location location) {
  TextView myLocationText;
  myLocationText = (TextView)findViewById(R.id.myLocationText);

  String latLongString = "No location found";
  if (location != null) {
    double lat = location.getLatitude();
    double lng = location.getLongitude();
    latLongString = "Lat:" + lat + "\nLong:" + lng;
  }

  myLocationText.setText("Your Current Position is:\n" +
                       latLongString);
}

private final LocationListener locationListener = new LocationListener() {
  public void onLocationChanged(Location location) {
    updateWithNewLocation(location);
    Log.i("onLocationChanged", "onLocationChanged");
    Toast.makeText(getApplicationContext(), "location changed", 
            Toast.LENGTH_SHORT).show();
  }

public void onProviderDisabled(String provider) {}
public void onProviderEnabled(String provider) {}
public void onStatusChanged(String provider, int status, 
                            Bundle extras) {}

};

显现

<uses-permission
android:name="android.permission.ACCESS_FINE_LOCATION"
/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/> 
4

5 回答 5

2

我的猜测是,您没有从中获取位置更新的手机没有正确的数据连接。网络提供商需要 GSM/3G 或 WiFi 数据连接才能使用手机的手机/wifi 数据从 Google 服务器检索位置修复。您可以使用下面的方法进行检查。

public boolean isOnline() {
ConnectivityManager cm =
    (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo netInfo = cm.getActiveNetworkInfo();
if (netInfo != null && netInfo.isConnectedOrConnecting()) {
    return true;
}
return false;

}

于 2012-07-02T20:32:17.280 回答
0

现在我怀疑谷歌位置服务在某些地区出现故障。我的应用程序重新开始工作,没有更改代码(来自 Play 商店的 apk)。

于 2012-12-11T18:08:09.750 回答
0

请检查您的 onProviderDisabled 方法是否没有立即被调用。

如果您发现提供商在注册后立即被呼叫,则意味着您使用的电话已禁用定位服务。

于 2012-06-25T03:24:03.127 回答
0

我遇到了同样的问题,结果证明onLocationChanged如果存在getLastKnownLocation与“当前”相同的问题,则不会调用它。这意味着您不会获得新位置,因为没有什么新的要报告...解决方案是使用最后一个已知位置,即使它很旧(如果您需要更精确/新的位置(如果这样),请继续侦听更新发生))。

于 2012-12-23T16:55:41.513 回答
0

NetworkProvider在(4.0)中进行测试时,我也遇到了同样的问题,ICS但在旧版本(我测试过的 2.2 和 2.3.3)中工作正常。这是我找到的解决方案,也可以正常工作ICS。请使用Criteria获取位置更新,如下所示:

 LocationManager locationManager= (LocationManager) <YourAct>
            .getSystemService(Context.LOCATION_SERVICE);
 Criteria criteria = new Criteria();
    criteria.setAccuracy(Criteria.ACCURACY_COARSE);  //ACCURACY_COARSE or ACCURACY_FINE based on usage

    String provider = locationManager.getBestProvider(criteria, true);
    // Register the listener with the Location Manager to receive location
    // updates
    locationManager.requestLocationUpdates(provider, 0, 0, locationListener);

替换上面的代码。这将帮助您获取位置更新。

于 2012-12-12T06:04:22.627 回答