我正在使用 google play services api 在我的应用程序中获取位置更新。但是,由于某种原因,client.getLastLocation() 在客户端连接时不会更改其值。只有在通过注册监听器请求位置更新后,位置才会改变。我认为这可能只是模拟器的问题,但即使我使用 ddms 或 telnet 手动更改位置,getLastLocation() 的值仍然没有改变。
不幸的是,我的手机没有出现在 adb 中,所以我无法在实际设备上对其进行测试,但是有人知道为什么会发生这种情况吗?这没什么大不了的,因为我可以通过请求位置更新来解决它,但我想提供一个设置,允许用户手动更新他们的位置,而不是每隔几秒就上传一次。一些代码来显示我在说什么。
@Override
public void onClick(View v) {
Location newLocation = client.getLastLocation();
if(newLocation == null)
{
Toast.makeText(getActivity(), "Finding location", Toast.LENGTH_SHORT).show();
return;
}
if(distanceSignificant(currentLocation, newLocation))
{
currentLocation = newLocation;
Log.d(TAG, "distance significant, updating location");
uploadNewLocation();
}
}
});
每次我单击该按钮时,位置都会与上次相同。
@Override
public void onConnected(Bundle data) {
Log.d(TAG, "connected to locations");
Toast.makeText(getActivity(), "Starting location services", Toast.LENGTH_SHORT).show();
currentLocation = client.getLastLocation();
if(currentLocation == null)
{
Log.d(TAG, "can't add user location yet, not available");
}
if(shouldUpdate)
{
client.requestLocationUpdates(locationRequest, this);
updateButton.setVisibility(View.GONE);
}
else
{
updateButton.setVisibility(View.VISIBLE);
}
}
在这种情况下,应该在 onCreateView 中设置 shouldUpdate 并由用户设置。
有谁知道我应该怎么做才能解决这个问题?我觉得我错过了一些简单的东西。