我有一个Android应用程序,我在前景/后台检测信标。当我关闭设备上的蓝牙时,一切正常。在这种情况下OnExitRegion被呼叫,但是我忽略它,因为我真的不知道用户在做什么,但如果那时我移动了远处的信标并再次打开蓝牙, onExitRegion将不再被调用,我不知道我已离开该地区。
这是我的代码的一部分。
public class MyApplication extends Application implements BootstrapNotifier {
public void onCreate() {
super.onCreate();
...
mBeaconManager = BeaconManager.getInstanceForApplication(this);
mBeaconManager.getBeaconParsers().add(new BeaconParser().
setBeaconLayout(Constants.BEACON_LAYOUT));
mBeaconRegion = new Region(Constants.BEACON_BACKGROUND_REGION, Identifier.parse(Constants.BEACON_UDID), null, null);
regionBootstrap = new RegionBootstrap(this, mBeaconRegion);
backgroundPowerSaver = new BackgroundPowerSaver(this);
mBeaconManager.setBackgroundScanPeriod(Constants.BEACON_BACKGROUND_SCAN_PERIOD);
mBeaconManager.setBackgroundBetweenScanPeriod(Constants.BEACON_BACKGROUND_BETWEEN_SCAN_PERIOD);
mBeaconManager.setAndroidLScanningDisabled(true);
...
}
我试图创建一个BroadcastReceiver来检测蓝牙何时关闭或开启
public class BluetoothBroadcastReceiver extends BroadcastReceiver {
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
if (BluetoothAdapter.ACTION_STATE_CHANGED.equals(action)) {
if (intent.getIntExtra(BluetoothAdapter.EXTRA_STATE, -1)
== BluetoothAdapter.STATE_OFF) {
Log.w("BLUETOOTH", "Bluetooth is disconnected");
} else {
Log.w("BLUETOOTH", "Bluetooth is connected");
}
}
}
}
我需要的是检查此广播接收器,当蓝牙打开时,如果我仍然在该区域内或不修改用户界面。
希望我的解释足够清楚。
非常感谢提前!
答案 0 :(得分:0)
显然,如果蓝牙无线电关闭,Android Beacon Library无法检测到您是否真的离开了信标区域。但是,一旦蓝牙重新启动,您就可以了解如何模拟退出行为:
保留两个应用程序级变量:
Set<Region> regionsActive = new HashSet<Region>();
Set<Region> regionsActiveWhenBluetoothDisabled = new HashSet<Region>();
将代码添加到didExitRegion
和didEnterRegion
,以将区域添加/移除到regionsActive
变量。
在您检测到蓝牙已关闭的代码中执行:
regionsActiveWhenBluetoothDisabled = new HashSet(regionsActive);
在您收到蓝牙打开的回叫的代码中,启动计时器10秒钟左右。在此计时器结束时,执行以下操作:
for (Region region: regionsActiveWhenBluetoothDisabled) {
if (!regionsActive.contains(region)) {
// We know we are no longer in a region that we were in when bluetooth was last turned off
// execute code to say we are out of this region
}
}