gpt4 book ai didi

android - 如何在 Android 中使用 LocationManager#getCurrentLocation

转载 作者:行者123 更新时间:2023-12-04 08:34:40 24 4
gpt4 key购买 nike

我需要获取当前位置信息。现在我使用getLastKnownLocation但有时它可能会返回 null 或过时的信息。我正在尝试使用 requestSingleUpdate但它在 API 级别 30 中已弃用,并要求我使用 getCurrentLocation反而。我怎样才能实现它?
这是我当前的代码供引用。

LocationManager locationManager = (LocationManager) ApplicationProvider.getApplicationContext().getSystemService(Context.LOCATION_SERVICE);
Location location = locationManager.getLastKnownLocation(LocationManager.GPS_PROVIDER);

float accuracy = location.getAccuracy();
double altitude = location.getAltitude();
double latitude = location.getLatitude();
double longitude = location.getLongitude();
float speed = location.getSpeed();

最佳答案

我已经解决了。这是代码。

locationManager.getCurrentLocation(
LocationManager.GPS_PROVIDER,
null,
application.getMainExecutor(),
new Consumer<Location>() {
@Override
public void accept(Location location) {
// code
}
});

关于android - 如何在 Android 中使用 LocationManager#getCurrentLocation,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64853673/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com