自发布以来,我一直在使用融合位置提供程序,我对此非常满意(比旧系统好得多)。但是在将地理围栏与 LocationClient.lastKnownLocation() 结合使用时,我遇到了一个特殊的问题。设置如下:
我在一些家庭位置周围放置了几个地理围栏(范围越来越大)。当我得到越过栅栏的意图时,我从 LocationClient 检索最后一个已知位置并使用它。除此之外,我还使用更新模式 PRIORITY_BALANCED_POWER_ACCURACY 注册了定期位置更新。
大多数情况下,这工作得很好,但有时会发生这种情况:
时间 000 s - (Lat,Lon,Accuracy) = (48.127316,11.5855167,683.0)
时间 120 s - (Lat,Lon,Accuracy) = (48.1260497,11.5731745,31.823)
时间 300 s - (Lat,Lon,Accuracy) = (48.1217455,11.5641666,143.81)
时间 420 s - (Lat,Lon,Accuracy) = (48.1189942,11.559061,36.0)
时间 600s - (Lat,Lon,Accuracy) = (48.127316,11.5855167,683.0)
请注意,所有这些位置都由getLastKnownLocation()检索。这里看起来可疑的是第一个和最后一个位置是相同的(即使在其他属性中),更具体地说:
* intent at time 0: *
component: ComponentInfo{package.Class}
key [location]: Location[mProvider=fused,mTime=1373524391934,mLatitude=48.127316,mLongitude=11.5855167,mHasAltitude=false,mAltitude=0.0,mHasSpeed=false,mSpeed=0.0,mHasBearing=false,mBearing=0.0,mHasAccuracy=true,mAccuracy=683.0,mExtras=Bundle[mParcelledData.dataSize=352]]
* intent at time 600: *
component: ComponentInfo{package.Class}
key [location]: Location[mProvider=fused,mTime=1373524994871,mLatitude=48.127316,mLongitude=11.5855167,mHasAltitude=false,mAltitude=0.0,mHasSpeed=false,mSpeed=0.0,mHasBearing=false,mBearing=0.0,mHasAccuracy=true,mAccuracy=683.0,mExtras=Bundle[mParcelledData.dataSize=352]]
* note the ~600 s difference in the timestamp *
我不明白这是怎么发生的,因为在这两者之间有一些位置更近更准确。旧位置上的新时间戳也让我很好奇......显然在使用旧 API时发生了类似的事情,但是这个新的位置提供程序只是被调用了fused
,所以我无法将 GPS 与WPS与传感器区分开来......如果是手机信号塔切换问题(在有关旧 API 的链接问题中概述)那么如果手机看到更近的信号塔,为什么会连接到“遥远”的信号塔?
为什么会这样?