Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为 Android 开发一个 gps 跟踪我希望我的应用程序在手机启动时启动并在 10 分钟内从 10 发送 gps 坐标。
我是否需要使用服务或 AlarmManager 广播接收器才能完成这项工作?
您可以在手机启动时启动服务并监听坐标变化。看这篇文章
开机启动服务
如果您获取地理坐标的频率要少得多,比如在几分钟内找到 1 个位置,则首选 AlarmManager 而不是服务...
否则,如果您的频率要高得多,请说每 20/30 秒,然后更喜欢服务,因为 AlarmManager 在几秒钟内提醒的情况下非常繁重......