android - 如何在单个区域添加多个信标?

标签 android ibeacon-android estimote android-ibeacon

根据 Estimote :

There is almost no limit to how many beacons can be included in a single region (technically, it’s over 4 billion).

我们如何在一个区域中添加多个信标进行监控?

我们像这样创建一个区域:

UUID ESTIMOTE_PROXIMITY_UUID = UUID.fromString("B9407F30-F5F8-4568-AFF9-25556B57FE6D");
Region ALL_ESTIMOTE_BEACONS = new Region("regionId", ESTIMOTE_PROXIMITY_UUID, null, null);

最佳答案

来自 an Estimote community manager :

If a region is defined by UUID or UUID + Major, then every beacons with this UUID (or UUID + Major) is included

这意味着如果我有两个具有相同 UUIDMajor 的信标并且如果我创建了 Region 那么所有信标都属于那个 区域应该被发现。

示例:

UUID ESTIMOTE_PROXIMITY_UUID = UUID.fromString("B9407F30-F5F8-466E-AFF9-25556B57FE6D");
Region ALL_ESTIMOTE_BEACONS = new Region("regionId", major, null, null); 

关于android - 如何在单个区域添加多个信标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34393612/

相关文章:

java - 哪个是按顺序发送大型 UDP 数据包的最佳方法

android - BLE 信号发射的模拟测试?

android - 使用 Radius Networks Android Beacon 库检测 iBeacons UUID

cordova - 如何根据 tx、rssi 和精度计算到信标的距离

android - Webview 不能接受 cookie

android - 如何adb连接到Docker容器内的android模拟器?

ios - Estimote beacons proximity demo 在 "Immediate"案例上推送 ViewController

java - 检测信标的检测顺序?

java - 如何获得 for 循环中所有项目的总金额?

ios - 方法 LocationManager :didEnterRegion and LocationManager:didExitRegion is getting called continuously