gpt4 book ai didi

android - 如何在 Android 中获取高度

转载 作者:太空宇宙 更新时间:2023-11-03 13:03:52 27 4
gpt4 key购买 nike

我使用 Location 类来获取高度,但它始终返回 0。

请告诉我如何获得高度?

Location.getAltitude();

最佳答案

最初我使用 location.getAltitude() 并且它总是重新调整为 0.0 。然后我遇到了https://groups.google.com/forum/#!topic/android-beginners/KNeLh905ip0它帮助我解决了我的问题。它适用于真实的真实设备。

private LocationProvider _locationProvider;
private LocationManager _locationManager;
_locationManager = (LocationManager) mContext
.getSystemService(LOCATION_SERVICE);

_locationProvider = _locationManager
.getProvider(LocationManager.GPS_PROVIDER);

location = _locationManager.getLastKnownLocation
(LocationManager.GPS_PROVIDER);

_locationProvider.supportsAltitude();
hasaltitude = location.hasAltitude();
double altitude = location.getAltitude();
System.out.println("HasAltitude" + hasaltitude+"-"+altitude);

“海拔高度”的值将以米为单位。

关于android - 如何在 Android 中获取高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7594221/

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