打开我的应用程序时如何显示用户的当前位置
Posted
技术标签:
【中文标题】打开我的应用程序时如何显示用户的当前位置【英文标题】:How to show current location of user while open my app 【发布时间】:2017-07-01 02:00:17 【问题描述】:我想制作一个应用程序,当用户打开我的应用程序时,用户将在我的应用程序中获取他们当前的位置,而当用户更改他们的位置时,它也会在特定时间后更新。 我在用户更改位置时得到了更改位置的解决方案,但我需要在用户打开我的应用时显示用户的当前位置。
【问题讨论】:
How do I get the current GPS location programmatically in android?的可能重复 到目前为止你做了什么?请添加代码。 【参考方案1】:googleMap.setMyLocationEnabled(true);
Location myLocation = googleMap.getMyLocation();
这些是获取当前位置的关键行。
有关更多信息,请参阅以下教程: android show current location on map using google maps api
和 how to get current location in google map android
【讨论】:
不工作。它显示纬度:0.0 和经度:0.0 但是那个链接对我来说很好用。然后也参考这些链接,javapapers.com/android/get-current-location-in-android,clover.studio/2016/08/09/… 当我在不同的设备上运行它时它可以工作android show current location on map using google maps api。谢谢以上是关于打开我的应用程序时如何显示用户的当前位置的主要内容,如果未能解决你的问题,请参考以下文章
应用程序启动地图活动后,如何在 android 的地图中显示我的当前位置