Eddystone
Androidプラットフォームでaltbeaconライブラリを使用したビーコンのバックグラウンド監視は可能ですか? どうすれば達成できますか?
以下は、アプリの起動時に指定された UUID でビーコンを検出できるコードですが、アプリが実行されていないときにも同じことを達成したいと考えています。
public class MainActivity extends ActionBarActivity implements BeaconConsumer,MonitorNotifier
{
private BeaconManager beaconManager;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
protected void onResume() {
super.onResume();
beaconManager = BeaconManager.getInstanceForApplication(this.getApplicationContext());
beaconManager.getBeaconParsers().add(new BeaconParser().setBeaconLayout("s:0-1=feaa,m:2-2=00,p:3-3:-41,i:4-13,i:14-19"));
beaconManager.bind(this);
}
@Override
public void onBeaconServiceConnect() {
Identifier myBeaconNamespaceId = Identifier.parse("0xe2bfcc3cc2370789caef");
Region region = new Region("my-beacon-region", myBeaconNamespaceId, null, null);
beaconManager.setMonitorNotifier(this);
try {
beaconManager.startMonitoringBeaconsInRegion(region);
} catch (RemoteException e) {
e.printStackTrace();
}
}
@Override
public void didEnterRegion(Region region) {
Log.d("radbeacon", "Beacon detected with namespace id " + region.getId1() +" and instance id: " + region.getId2());
}
@Override
public void didExitRegion(Region region) {
Log.d("radbeacon", "Beacon out of region with namespace id " + region.getId1() +" and instance id: " + region.getId2());
}
@Override
public void didDetermineStateForRegion(int i, Region region) {
//Ignore
}
}