如何使用 Altbeacon android 库检测多个信标?
How to detect multiple beacons using Altbeacon android library?
我正在我的 android 设备上使用 AltBeacon 示例应用程序 - altbeacon.org 提供的示例应用程序位于:https://github.com/AltBeacon/android-beacon-library-reference
但是,该应用程序在启动时仅检测并显示一个信标。我的 Android 设备附近有大约 5 个信标。如何检测所有信标?
在 RangingActivity.java 中,我注意到当信标出现时调用的这个方法:
public void onBeaconServiceConnect() {
beaconManager.setRangeNotifier(new RangeNotifier() {
@Override
public void didRangeBeaconsInRegion(Collection<Beacon> beacons, Region region) {
if (beacons.size() > 0) {
EditText editText = (EditText) RangingActivity.this.findViewById(R.id.rangingText);
Beacon firstBeacon = beacons.iterator().next();
logToDisplay("The first beacon " + firstBeacon.toString() + " is about " + firstBeacon.getDistance() + " meters away.");
}
}
}
我将迭代器修改为在 while 循环中从集合中读取数据,如下所示:
Beacon firstBeacon;
while(beacons.iterator().hasNext()){
firstBeacon = beacons.iterator().next();
logToDisplay("The first beacon " + firstBeacon.toString() + " is about " + firstBeacon.getDistance() + " meters away.");
}
但是,此修改导致应用程序崩溃。
我的问题:
(1) 如何显示我的 Android 设备附近的所有信标?
(2) 如何检测超出区域的信标?
For 1. 我认为你需要使用 For 循环。像这样。
for (Beacon beacon : beacons) {
logToDisplay("The beacon " + beacon.toString() + " is about " + beacon.getDistance() + " meters away.");
}
对于 2。我在检测时遇到了问题,但超时时间可能很长。所以要非常耐心。我认为可以更改 Monitoring activity 中的代码以显示一条消息。或者您可以通过设备查看 logcat。
可以在 BeaconReferenceApplication 的 didExitRegion 部分使用简单的 logToDisplay。
public void didExitRegion(Region region) {
if (monitoringActivity != null) {
monitoringActivity.logToDisplay("I no longer see a beacon in the "+region.getUniqueId());
}
}
我正在我的 android 设备上使用 AltBeacon 示例应用程序 - altbeacon.org 提供的示例应用程序位于:https://github.com/AltBeacon/android-beacon-library-reference
但是,该应用程序在启动时仅检测并显示一个信标。我的 Android 设备附近有大约 5 个信标。如何检测所有信标?
在 RangingActivity.java 中,我注意到当信标出现时调用的这个方法:
public void onBeaconServiceConnect() {
beaconManager.setRangeNotifier(new RangeNotifier() {
@Override
public void didRangeBeaconsInRegion(Collection<Beacon> beacons, Region region) {
if (beacons.size() > 0) {
EditText editText = (EditText) RangingActivity.this.findViewById(R.id.rangingText);
Beacon firstBeacon = beacons.iterator().next();
logToDisplay("The first beacon " + firstBeacon.toString() + " is about " + firstBeacon.getDistance() + " meters away.");
}
}
}
我将迭代器修改为在 while 循环中从集合中读取数据,如下所示:
Beacon firstBeacon;
while(beacons.iterator().hasNext()){
firstBeacon = beacons.iterator().next();
logToDisplay("The first beacon " + firstBeacon.toString() + " is about " + firstBeacon.getDistance() + " meters away.");
}
但是,此修改导致应用程序崩溃。
我的问题:
(1) 如何显示我的 Android 设备附近的所有信标?
(2) 如何检测超出区域的信标?
For 1. 我认为你需要使用 For 循环。像这样。
for (Beacon beacon : beacons) {
logToDisplay("The beacon " + beacon.toString() + " is about " + beacon.getDistance() + " meters away.");
}
对于 2。我在检测时遇到了问题,但超时时间可能很长。所以要非常耐心。我认为可以更改 Monitoring activity 中的代码以显示一条消息。或者您可以通过设备查看 logcat。 可以在 BeaconReferenceApplication 的 didExitRegion 部分使用简单的 logToDisplay。
public void didExitRegion(Region region) {
if (monitoringActivity != null) {
monitoringActivity.logToDisplay("I no longer see a beacon in the "+region.getUniqueId());
}
}