AltBeacon 范围从 returns 超过 1 个信标
AltBeacon ranging never returns more than 1 beacon
我正在使用 AltBeacon 库 (2.5.1) 来检测信标。
我设置了一个 "universal" 区域,以便能够检测范围内的任何信标,然后用它做我的事情。
问题是,当我在范围内有多个信标时,didRangeBeaconsInRegion 回调总是一次只为我提供 1 个信标的 Collection,而这个信标是所有现有信标中的随机信标......为什么不能我在我的 Collection ?
范围内获得了所有信标
所有这些都是在一个服务中完成的,我确实清理了所有其他东西以仅保留下面代码的相关部分 -> 希望我在这里做错了什么?
public class MonitorService extends Service implements BeaconConsumer
{
private BeaconManager beaconManager;
@Override
public void onCreate()
{
super.onCreate();
beaconManager = BeaconManager.getInstanceForApplication(this);
beaconManager.getBeaconParsers().add(new BeaconParser().
setBeaconLayout("m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24"));
beaconManager.setForegroundScanPeriod(5000l);
beaconManager.setBackgroundScanPeriod(5000l);
beaconManager.setForegroundBetweenScanPeriod(1100l);
beaconManager.setBackgroundBetweenScanPeriod(1100l);
setupBeaconManager();
}
private void setupBeaconManager()
{
if (!beaconManager.isBound(this))
beaconManager.bind(this);
}
private void unsetBeaconManager()
{
if (beaconManager.isBound(this))
{
beaconManager.unbind(this);
try
{
beaconManager.stopRangingBeaconsInRegion(new Region("apr", null, null, null));
}
catch (RemoteException e)
{
Log.i(TAG, "RemoteException = "+e.toString());
}
}
}
@Override
public void onBeaconServiceConnect()
{
beaconManager.setRangeNotifier(new RangeNotifier() {
@Override
public void didRangeBeaconsInRegion(Collection<Beacon> beacons, Region region)
{
Log.i(TAG,"didRangeBeaconsInRegion, number of beacons detected = "+beacons.size());
// HERE IT IS : the size is Always 1, but the beacon (UUID etc. can be different)
}
});
try
{
beaconManager.startRangingBeaconsInRegion(new Region("apr", null, null, null));
}
catch (RemoteException e)
{
Log.i(TAG, "RemoteException = "+e.toString());
}
}
@Override
public void onDestroy()
{
unsetBeaconManager();
super.onDestroy();
}
}
我正在使用 Nexus 6 开发 Android 5.1.1(但便宜的 Wiko phone 给出了相同的结果)。信标设置为每 600 毫秒发布一次广告……但即使是 100 毫秒,它也会给出完全相同的结果……
代码看起来不错。几个想法:
尝试使用基于与 Locate 相同的库的现成信标扫描仪应用程序。它会同时检测到您所有的信标吗?如果不是,则可能是信标或其配置有问题。
你们的每个信标都有唯一的标识符吗?默认情况下,库仅检测具有唯一标识符的多个信标。
我正在使用 AltBeacon 库 (2.5.1) 来检测信标。 我设置了一个 "universal" 区域,以便能够检测范围内的任何信标,然后用它做我的事情。 问题是,当我在范围内有多个信标时,didRangeBeaconsInRegion 回调总是一次只为我提供 1 个信标的 Collection,而这个信标是所有现有信标中的随机信标......为什么不能我在我的 Collection ?
范围内获得了所有信标所有这些都是在一个服务中完成的,我确实清理了所有其他东西以仅保留下面代码的相关部分 -> 希望我在这里做错了什么?
public class MonitorService extends Service implements BeaconConsumer
{
private BeaconManager beaconManager;
@Override
public void onCreate()
{
super.onCreate();
beaconManager = BeaconManager.getInstanceForApplication(this);
beaconManager.getBeaconParsers().add(new BeaconParser().
setBeaconLayout("m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24"));
beaconManager.setForegroundScanPeriod(5000l);
beaconManager.setBackgroundScanPeriod(5000l);
beaconManager.setForegroundBetweenScanPeriod(1100l);
beaconManager.setBackgroundBetweenScanPeriod(1100l);
setupBeaconManager();
}
private void setupBeaconManager()
{
if (!beaconManager.isBound(this))
beaconManager.bind(this);
}
private void unsetBeaconManager()
{
if (beaconManager.isBound(this))
{
beaconManager.unbind(this);
try
{
beaconManager.stopRangingBeaconsInRegion(new Region("apr", null, null, null));
}
catch (RemoteException e)
{
Log.i(TAG, "RemoteException = "+e.toString());
}
}
}
@Override
public void onBeaconServiceConnect()
{
beaconManager.setRangeNotifier(new RangeNotifier() {
@Override
public void didRangeBeaconsInRegion(Collection<Beacon> beacons, Region region)
{
Log.i(TAG,"didRangeBeaconsInRegion, number of beacons detected = "+beacons.size());
// HERE IT IS : the size is Always 1, but the beacon (UUID etc. can be different)
}
});
try
{
beaconManager.startRangingBeaconsInRegion(new Region("apr", null, null, null));
}
catch (RemoteException e)
{
Log.i(TAG, "RemoteException = "+e.toString());
}
}
@Override
public void onDestroy()
{
unsetBeaconManager();
super.onDestroy();
}
}
我正在使用 Nexus 6 开发 Android 5.1.1(但便宜的 Wiko phone 给出了相同的结果)。信标设置为每 600 毫秒发布一次广告……但即使是 100 毫秒,它也会给出完全相同的结果……
代码看起来不错。几个想法:
尝试使用基于与 Locate 相同的库的现成信标扫描仪应用程序。它会同时检测到您所有的信标吗?如果不是,则可能是信标或其配置有问题。
你们的每个信标都有唯一的标识符吗?默认情况下,库仅检测具有唯一标识符的多个信标。