0
我在主要活動增加了一個onDestroy
次活動禁用藍牙適配器
@Override
protected void onDestroy() {
if (BTAdapter.isEnabled()) {
BTAdapter.disable();
}
this.unregisterReceiver(receiver);
super.onDestroy();
}
在我的主要活動我從抽屜式導航
if (id == R.id.nav_devices) {
intent = new Intent("com.navigationwithrssi.RSSIActivity");
startActivity(intent);
}
啓動另一個活動,但是當我回來我的主要活動(使用工具欄中的默認後退按鈕),RSSIActivity會自動禁用藍牙適配器。
我只是想讓我的主要活動能夠做到這一點,有沒有辦法做到這一點?