我想将LocationResult类对象转换为Location类对象。这样我就可以从Location类访问所有方法。
protected void onHandleIntent(Intent intent) {
if(LocationResult.hasResult(intent)){
LocationResult currentLocation = com.google.android.gms.location.LocationResult.extractResult(intent);
calculateDistanceTo(currentLocation);
return;
}
}
最佳答案
如果您阅读文档:https://developers.google.com/android/reference/com/google/android/gms/location/LocationResult
您会看到无法将LocationResult
转换为Location
,因为LocationResult
具有Location
列表。
应用getLocations()
并遍历每个Location
以执行所需的操作。
关于java - 如何将Android中的LocationResult类转换为Location类?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42762868/