Android - Location.getAccuracy() returns 负精度

Android - Location.getAccuracy() returns negative accuracy

我的应用程序中发生过以下崩溃,一次发生在我身上,一次发生在野外。当我在地图周围画一个半径圆并且精度为负时,就会发生这种情况。除了硬编码负值外,我无法重现该问题。

出现在 Moto G gen1 (4.4.4) 和 Samsung Galaxy S3 (4.4.2) 上

Fatal Exception: java.lang.IllegalArgumentException: radius is negative
   at com.google.a.a.ae.a(Unknown Source)
   at com.google.maps.api.android.lib6.e.eg.(Unknown Source)
   at com.google.maps.api.android.lib6.e.ev.a(Unknown Source)
   at com.google.android.gms.maps.internal.j.onTransact(SourceFile:390)
   at android.os.Binder.transact(Binder.java:380)
   at com.google.android.gms.maps.internal.IGoogleMapDelegate$zza$zza.addCircle(Unknown Source)
   at com.google.android.gms.maps.GoogleMap.addCircle(Unknown Source)

有一次我看到它时,我在早上 return 访问了该应用程序,但它会崩溃,指出有关 activity 正在被销毁并重新创建的问题?

实际错误在崩溃前经过这三个方法

@Override
public void onLocationChanged(Location location) {
    confirmValidLocationReading(location);
}

private void confirmValidLocationReading(Location location) {

    lastLocLL = new LatLng(location.getLatitude(), location.getLongitude());         
    setMapLocation(lastLocLL, location.getAccuracy());

}

private void setMapLocation(LatLng latLong, double accuracy) {

    CameraPosition cameraPosition = new CameraPosition.Builder()
            .target(latLong)      
            .zoom(16)                  
            .bearing(0)                
            .tilt(30)                   
            .build();                  

    googleMap.clear();
    googleMap.addMarker(new MarkerOptions().position(latLong));
    googleMap.setMyLocationEnabled(false);


    CircleOptions co = new CircleOptions();
    co.center(latLong);
    co.radius(accuracy);  //<--- Value is negative
    co.strokeColor(getResources().getColor(R.color.themePrimaryTwo));
    co.strokeWidth(4.0f);
    googleMap.addCircle(co);  //<--- App Crashes

    googleMap.moveCamera(CameraUpdateFactory.newCameraPosition(cameraPosition));

}

令人困惑的是,我从 API 中获取的值的准确度为负,但文档显示

"If this location does not have an accuracy, then 0.0 is returned. All locations generated by the LocationManager include an accuracy."

http://developer.android.com/reference/android/location/Location.html#getAccuracy()

为什么这会 return 为负值?如果合法,负值意味着什么? google 提供给我的位置是否存在错误?

该应用程序是 运行 play-services-maps 7.0.0。我计划更新到较新的版本,但我仍然想了解这里发生了什么,如果它不是定位服务中的错误 api,我现在将检查画圈...

如果API真的传递负值,那应该是设备固件中的错误。

您无法更改固件,但可以通过检查准确性来避免:

if (accuracy < 0)
    accuracy = 0;

co.radius(accuracy);