gpt4 book ai didi

android - Genymotion GPS 未更新

转载 作者:太空狗 更新时间:2023-10-29 14:00:19 27 4
gpt4 key购买 nike

我已经安装了 genymotion 和 google play 服务。我已经使用应用商店安装了谷歌地图,我希望它将我的位置更新为我的当前位置或我提供的假位置。原因是我正在尝试测试使用 google maps api 的应用程序。

我创建的设备是 Galaxy S6 -6.0.0 - API 级别 23设置 > 个人 > 位置 > 高精度已开启模拟器的 GPS 已打开并且位置已设置。然而,当我返回我的应用程序时,它并没有更新 map 上的位置。

有没有办法用 geny shell 或注入(inject)位置?

编辑:我也可以从浏览器访问我的 map 应用程序,但我得到以下信息:

1) 网站想知道你的位置?我按共享位置

2) 此站点无法访问您的位置。在“设置”>“高级”>“网站”屏幕上更改此项

除了为各个网站明确位置偏好外,这里没有什么可做的。

如有任何帮助或建议,我们将不胜感激。

最佳答案

对于任何在 Genymotion 上检索 getLastKnownLocation 以便在 map 上设置点或类似这样的东西的人:

LocationManager locationManager = (LocationManager)getActivity().getSystemService(
AppCompatActivity.LOCATION_SERVICE);

// First try and get last location from network provider
location = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
// If that doesn't work, try the GPS provider
if(location == null) {
location = locationManager.getLastKnownLocation(LocationManager.GPS_PROVIDER);
}

通过 GPS 小部件或 Genymotion shell 设置设备纬度/经度不会自动更新设备的 lastKnownLocation。我不得不手动打开 map ,让它更新到指定位置以设置 lastKnowLocation,它从那里开始工作。

关于android - Genymotion GPS 未更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36072793/

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