正在检测对蓝牙适配器所做的状态更改?

2022-08-31 12:41:40

我有一个应用程序,上面有一个按钮,我用它来打开和关闭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

所以,我有两个问题:

  1. 有没有办法将 UI 元素(如按钮或图像)动态绑定到 BT 状态,以便在 BT 状态更改时,按钮也会更改?
  2. 否则,我想按下按钮并获得正确的状态(我希望它说BT打开,即使它只是连接,因为它将在2秒内打开)。我该怎么做?

答案 1

您将需要注册 一个来侦听 的状态中的任何变化:BroadcastReceiverBluetoothAdapter

作为私有实例变量(或在单独的类文件中...无论您喜欢哪一个):Activity

private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
    @Override
    public void onReceive(Context context, Intent intent) {
        final String action = intent.getAction();

        if (action.equals(BluetoothAdapter.ACTION_STATE_CHANGED)) {
            final int state = intent.getIntExtra(BluetoothAdapter.EXTRA_STATE,
                                                 BluetoothAdapter.ERROR);
            switch (state) {
            case BluetoothAdapter.STATE_OFF:
                setButtonText("Bluetooth off");
                break;
            case BluetoothAdapter.STATE_TURNING_OFF:
                setButtonText("Turning Bluetooth off...");
                break;
            case BluetoothAdapter.STATE_ON:
                setButtonText("Bluetooth on");
                break;
            case BluetoothAdapter.STATE_TURNING_ON:
                setButtonText("Turning Bluetooth on...");
                break;
            }
        }
    }
};

请注意,这假设您实现了一个将相应地更改 的文本的方法。ActivitysetButtonText(String text)Button

然后在您的 中,注册并注销,如下所示,ActivityBroadcastReceiver

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    /* ... */

    // Register for broadcasts on BluetoothAdapter state change
    IntentFilter filter = new IntentFilter(BluetoothAdapter.ACTION_STATE_CHANGED);
    registerReceiver(mReceiver, filter);
}

@Override
public void onDestroy() {
    super.onDestroy();

    /* ... */

    // Unregister broadcast listeners
    unregisterReceiver(mReceiver);
}

答案 2
public void discoverBluetoothDevices(View view)
    {
        if (bluetoothAdapter!=null)

            bluetoothAdapter.startDiscovery();
            Toast.makeText(this,"Start Discovery"+bluetoothAdapter.startDiscovery(),Toast.LENGTH_SHORT).show();
    }

推荐