如何在 sqlite 数据库和 SQLite 数据库中每 15 分钟存储一次位置信息发送到服务器?
我需要为 android 工作位置 API,首先数据每 15 分钟存储在 android 本身的本地 Sqlite 数据库中,然后将其发送到服务器,以便也可以离线跟踪数据。
非常感谢任何建议、代码或帮助!
I need to work Location API for android where first the data is to be stored on Local Sqlite datbase in android itself each 15 minutes and then send it to a server, so that data can be tracked offline too.
Any suggestions, code or help is really appreciated !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以简单地创建一个后台服务,然后实现一个位置侦听器。在该位置侦听器中,您可以在
requestLocationUpdate
方法中设置时间间隔,以按特定时间间隔 ping GPS。或者你可以使用timertask以特定的时间间隔发送gps这是一个位置管理器实例:
您可以将该位置从服务发送到服务器。您还可以发送通知来启动应用程序。
You, can simply create a background service then implements a location listener. In that location listener, you can set the time interval in the
requestLocationUpdate
method to ping the GPS at particular time intervals. or you can use timertask to send gps at particular intervalsHere is a location manager instance:
You can send that location to the server from the service. You can also send notifications to launch the app.
这个问题在 SO 中被多次问到,
请使用
Alarm Manager and Service
来解决这个问题,并解决这个问题
我如何每 15 分钟发送 Android 设备的纬度经度到 php web 服务 和 如何在Android中每分钟获取gps坐标?
This question is many time asked in SO,
Use
Alarm Manager and Service
for this,And go through this question
How can i send latitude longitude of android device every 15minute to php web service and How to get gps coordinates every minute in Android?