Android GPS 和网络提供商
通过 Network_provider 获取位置更新时是否有必要启用 GPS,例如:
locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER,0,0,listener);
当 Android 设备的 GPS 被禁用时。 。 。 ? ? ?
Is it necessary for gps to be enabled while getting location updates through Network_provider like:
locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER,0,0,listener);
while GPS of android device is disabled . . . ? ? ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,您只需通过 wi-fi 或任何网络方式连接即可。您有单独的 GPS 提供商字符串,例如
locationMangaer.requestLocationUpdates(LocationManager.GPS_PROVIDER, MINIMUM_TIME, MIN_DISTANCE,listener);
no , you just have to be connected through wi-fi or any network means. you have separate provider string for GPS e.g
locationMangaer.requestLocationUpdates(LocationManager.GPS_PROVIDER, MINIMUM_TIME, MIN_DISTANCE, listener);