0

我正在试验 Android Beacon 库以使用以下代码在后台监控 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(如果它正在运行)时会进入前台,但如果应用程序未运行,则不会发生任何事情。这是预期的行为还是应用程序在未运行时应该启动?

4

1 回答 1

3

您可能需要澄清“应用程序未运行”的含义。你的意思是:

  1. 该应用程序已安装但从未启动
  2. 该应用程序已启动一次,但已重新启动
  3. 该应用程序已被任务切换器杀死

使用上面的代码,这是每种情况下的预期行为:

  1. 该应用程序将不会运行,也无法自动启动 Activity。
  2. 该应用程序将在启动后定期开始扫描信标,并在检测到信标时启动 Activity。
  3. 在充电器连接/断开或重新启动之前,该应用程序将不会运行并且无法自动启动。在那之后,行为如(2)所示。有关此案例的更多详细信息,请点击此处。

重要的是要注意,当没有可见的活动时,库只会每 5 分钟扫描一次以查找信标,因此检测可能需要很长时间。此间隔是完全可配置的。

情况 (3) 的限制是由 Android OS 施加的。在应用被用户杀死后,必须发生允许重新启动应用的事件。

于 2014-08-20T11:39:11.490 回答