这是我第一次尝试使用信标制作应用。我正在使用AltBeacon库。我现在想要的是能够从信标接收UUID。 为此,我想遵循Altbeacon的例子。
https://altbeacon.github.io/android-beacon-library/samples.html
所以我做了,这是我的代码。
public class MenuActivity extends AppCompatActivity implements View.OnClickListener, BeaconConsumer {
protected final String TAG = "BeaconSearch";
private BeaconManager beaconManager;
private Region region = new Region("myUniqueRegion", null,null,null);
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_menu);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
.setAction("Action", null).show();
}
});
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
BeaconManager beaconManager = BeaconManager.getInstanceForApplication(this);
beaconManager.getBeaconParsers().add(new BeaconParser().
setBeaconLayout("m:2-3=02150215,i:4-19,i:20-21,i:22-23,p:24-24"));
beaconManager.bind(this);
Button scanButton = (Button) findViewById(R.id.scan_btn);
scanButton.setOnClickListener(this);
}
@Override
public void onClick(View v) {
switch (v.getId()){
case R.id.scan_btn:
onBeaconServiceConnect();
break;
}
}
@Override
public void onDestroy(){
super.onDestroy();
beaconManager.unbind(this);
}
@Override
public void onBeaconServiceConnect() {
Log.i(TAG,"1");
beaconManager.setRangeNotifier(new RangeNotifier() {
@Override
public void didRangeBeaconsInRegion(Collection<Beacon> beacons, Region region) {
Log.i(TAG, "2");
if (beacons.size() > 0) {
Log.i(TAG, "Im Interested in this Beacon: " + beacons.iterator().next().getId1());
}
}
});
try {
Log.i(TAG,"3");
beaconManager.startRangingBeaconsInRegion(new Region("myRangingUniqueId", null, null, null));
} catch (RemoteException e) {
Log.i(TAG,"4");
}
}
}
所以我的理解是,如果附近有一个灯塔,这应该给我一个UUID。但我不明白我在哪里调用onBeaconServiceConnect()方法。我在OnCreate()方法中也通过按钮单击尝试了它,但无论应用程序崩溃了。
我真的想知道我做错了什么以及我在这里不理解什么。我感谢任何帮助!
答案 0 :(得分:0)
一些提示:
您没有调用onBeaconServiceConnect()
方法 - 由于调用bind()
如果您没有看到此调用自动发生,请确保在您的应用中启用了清单合并(如果使用Eclipse)。否则,您在清单中无法获得正确的服务声明。有关详细信息,请参阅here。
尝试将BeaconManager beaconManager = BeaconManager.getInstanceForApplication(this);
更改为beaconManager = BeaconManager.getInstanceForApplication(this);
否则您永远不会初始化类变量。