>我目前正在开发一个小应用程序,使用 Altbeacon 库检测信标.我正在尝试在 Altbeacon 启动和停止检测信标时显示吐司.但是我在文档中找不到回调或等效的东西。
我已经找到了一种在检测开始时显示吐司的方法,但是我找不到在检测停止时显示它的方法。
private boolean isStarted = false;
@Override
public void didRangeBeaconsInRegion(Collection<Beacon> collectionParam, Region region) {
if (!this.isStarted) {
this.isStarted = true;
// show toast
}
...
}
你只需要使用监控 API 和didExitRegion
回调。 有关详细信息,请参阅监视示例代码下的主要示例页面。 https://altbeacon.github.io/android-beacon-library/samples.html