我正在试验Android Beacon Library,以便使用以下代码在后台监控iBeacon:
public class IBeaconBootstrap extends Application implements BootstrapNotifier {
private RegionBootstrap regionBootstrap;
@Override
public void onCreate() {
super.onCreate();
Log.d("IBeaconBootstrap", "App started up");
// wake up the app when any beacon is seen (you can specify specific id
// filers in the parameters below)
Region region = new Region("MyRegion", null, null, null);
regionBootstrap = new RegionBootstrap(this, region);
// This is for Apple compatible iBeacons
BeaconManager.getInstanceForApplication(this).getBeaconParsers().add(new BeaconParser().setBeaconLayout("m:0-3=4c000215,i:4-19,i:20-21,i:22-23,p:24-24"));
}
@Override
public void didDetermineStateForRegion(int state, Region region) {
Log.d("Boostrap didDetermineStateForRegion", "Region " + region.toString());
}
@Override
public void didEnterRegion(Region region) {
Log.d("Boostrap didEnterRegion", "Got a didEnterRegion call");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
this.startActivity(intent);
}
@Override
public void didExitRegion(Region region) {
Log.d("Boostrap didExitRegion", "Got a didExitRegion call");
}
}
当检测到iBeacon正在运行时,应用程序会前进,但如果应用程序没有运行则没有任何反应。这是预期的行为还是应用程序如果没有运行应该启动?
答案 0 :(得分:2)
你可能需要澄清你的意思"应用程序没有运行"。你的意思是:
使用上面的代码,以下是每种情况下的预期行为:
重要的是要注意,当没有可见的活动时,库只会每5分钟扫描一次信标,因此检测可能需要很长时间。此时间间隔是完全可配置的。
Android OS强加对案例(3)的限制。必须发生一个事件,允许在用户杀死应用程序后重新启动应用程序。