正在检测对蓝牙适配器所做的状态更改?
我有一个应用程序,上面有一个按钮,我用它来打开和关闭BT。我在那里有以下代码;
public void buttonFlip(View view) {
flipBT();
buttonText(view);
}
public void buttonText(View view) {
Button buttonText = (Button) findViewById(R.id.button1);
if (mBluetoothAdapter.isEnabled() || (mBluetoothAdapter.a)) {
buttonText.setText(R.string.bluetooth_on);
} else {
buttonText.setText(R.string.bluetooth_off);
}
}
private void flipBT() {
if (mBluetoothAdapter.isEnabled()) {
mBluetoothAdapter.disable();
} else {
mBluetoothAdapter.enable();
}
}
我正在调用按钮Flip,它翻转BT状态,然后调用ButtonText,它应该更新UI。但是,我遇到的问题是,BT需要几秒钟才能打开 - 在这些几秒钟内,BT状态未启用,使我的按钮显示蓝牙关闭,即使它将在2秒内打开。
我在蓝牙适配器Android文档中找到了常量,但是...我只是不知道如何使用它,作为一个新手和所有。STATE_CONNECTING
所以,我有两个问题:
- 有没有办法将 UI 元素(如按钮或图像)动态绑定到 BT 状态,以便在 BT 状态更改时,按钮也会更改?
- 否则,我想按下按钮并获得正确的状态(我希望它说BT打开,即使它只是连接,因为它将在2秒内打开)。我该怎么做?