在 Android 上在后台运行 GPS 侦听器
我想知道当Android应用程序在后台时如何接收GPS。有没有完整的教程来解释一下?
I would like to know how to receive GPS when the Android app is in the background. Is there a complete tutorial to explain it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您需要使用 AlarmManager 激活待处理的意图(通过广播接收器)以启动后台服务。
为您提供的一些示例代码
在您的 MainActivity
AlarmReceiver 类
中的BroadcastReceiver
后台服务。这里你会注意到两个重要的点:
所有这些都可以在 Play 商店的生产应用程序中进行。
最后,不要忘记你的清单。
You need to use a AlarmManager to activate a pending intent (via a broadcast receiver) to launch a background service.
Some sample code for you
In your MainActivity
AlarmReceiver class
The BroadcastReceiver
The background Service. Here you will notice 2 important points
All this works in a production app on the play store.
Lastly, don't forget your manifest thing.
您需要使用服务概念而不是活动。
http://developer.android.com/guide/components/services.html
这是一个很好的示例:
后台服务需要发送服务器上的 GPS 位置
You need to use Service concept instead of activity.
http://developer.android.com/guide/components/services.html
Here is a good sample:
Background service needs to send GPS location on server
您将在 Activity 中执行的操作也可以在服务中完成...在 Service 的 onStart() 中...
The thing which you will do in Activity can be done in service also..in the onStart() of Service....
您可以使用始终在后台运行的服务。在后台服务中,您可以获得当前的纬度和经度,并且可以使用 Android 地理编码器类进一步将这些纬度和经度转换为正确的位置...
检查以下链接:
http://www.codeproject.com/KB/android/GPSLocator。 ASPX
You can use a Service which always runs in the background..and in the background service you can get the current latitude and longitude and you can further convert these lats and longs into proper location using the Android geocoder class...
check the follwing link:
http://www.codeproject.com/KB/android/GPSLocator.aspx