我知道一些手機不預裝谷歌播放服務。我想問問,是否有可能在沒有Google Play服務的情況下獲取位置信息,只需使用LocationManager即可。不是LocationClient。獲取位置沒有谷歌播放服務-android
18
A
回答
2
11
可以使用的LocationManager
LocationManager locationManager = (LocationManager) getApplicationContext().getSystemService(LOCATION_SERVICE);
Location location = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
1
使用的LocationManager並設置適當的供應商,GPS或網絡。 您可以分別使用requestLocationUpdates()和getLastKnownLocation()方法獲取定期更新或單個更新。 最後,獲取一個Location對象並通過調用Location對象上的所需方法來檢索緯度,經度。
相關問題
- 1. Android谷歌播放位置服務
- 2. 獲取最後已知的位置與谷歌播放服務
- 3. 谷歌播放位置服務9.2.0缺少谷歌Android的歸屬資源
- 4. 更新谷歌服務genymotion沒有登錄谷歌播放
- 5. Android的工作室:獲取谷歌播放服務
- 6. 如何從谷歌播放服務獲取android app_id
- 7. Android Studio中谷歌播放服務沒有自動完成
- 8. Android谷歌播放服務廣告沒有顯示
- 9. com.android.build.transform.api.TransformException with android谷歌播放服務
- 10. Android設備4.4.4谷歌播放服務
- 11. 更新谷歌播放服務 - Android
- 12. 谷歌Android播放服務SDK
- 13. Android Studio谷歌播放服務庫
- 14. Xamarin谷歌播放服務
- 15. 谷歌播放服務
- 16. 谷歌驅動Android API在谷歌播放服務4.1
- 17. Android - 谷歌地圖,谷歌播放服務庫引用
- 18. 使用谷歌播放服務和FusedLocationProviderClient的位置更新
- 19. 谷歌播放服務9.2.1和谷歌服務插件
- 20. 我沒有找到谷歌播放服務_lib版本4.2.34
- 21. admob沒有工作,因爲(我認爲)谷歌播放服務
- 22. 沒有getApiClient()在谷歌播放遊戲服務BaseGameUtils
- 23. 沒有谷歌播放服務的Google日曆應用程序
- 24. 谷歌播放服務沒有文件夾中的網址
- 25. 添加谷歌播放服務作爲參考沒有IDE
- 26. 沒有谷歌播放服務庫在SDK管理器/日食
- 27. Android + Firebase:如何確保擁有最低谷歌播放服務
- 28. 谷歌播放服務9.2.0缺課
- 29. 谷歌播放服務不接受
- 30. 谷歌播放服務,未發現
http://www.google.com/mobile/maps/ ## http://developer.android.com/intl/es/reference/android/location/LocationManager.html ## http:// developer。 android.com/intl/es/guide/topics/location/strategies.html ##當您在Google中搜索時,只有3個第一項... –