如何在 sqlite 数据库和 SQLite 数据库中每 15 分钟存储一次位置信息发送到服务器?

发布于 2024-12-20 20:10:54 字数 117 浏览 1 评论 0原文

我需要为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

反话 2024-12-27 20:10:55

您可以简单地创建一个后台服务,然后实现一个位置侦听器。在该位置侦听器中,您可以在 requestLocationUpdate 方法中设置时间间隔,以按特定时间间隔 ping GPS。或者你可以使用timertask以特定的时间间隔发送gps
这是一个位置管理器实例:

lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, timeinterval2, 0, locationListener);

您可以将该位置从服务发送到服务器。您还可以发送通知来启动应用程序。

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 intervals
Here is a location manager instance:

lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, timeinterval2, 0, locationListener);

You can send that location to the server from the service. You can also send notifications to launch the app.

自由如风 2024-12-27 20:10:55

这个问题在 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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文