本文介绍了Android:geofence过期的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有什么办法可以触发Geofence到期(例如在回调方法中)?
我想重新计算仅在一个地理围栏尚未在一定的时间进入我的GPS跟踪器应用程序的路径。

Is there any way to trigger the Geofence expiration(e.g in a callback method)?I would like to recalculate the path on my gps-tracker app only if a geofence has not been entered in a certain amount of time.

推荐答案

你可以自己跟踪输入的事件。在各回调的地理围栏跳闸事件给你一个地理栅栏ID,然后可以执行你的逻辑和删除/与如果需要新的到期添加地理围栏(多个)。

You can just keep track of the entered events yourself. In each callback for a geofence tripped event you are given a Geofence Id and then you can perform your logic and remove/add the geofence(s) with the new expiration if needed.

这篇关于Android:geofence过期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-21 06:51