Android -包含蓝牙设备的ArrayList为空



我正在尝试发现所有可用的蓝牙设备并传递到另一个活动。然而,即使在查看Android文档时,我也无法弄清楚为什么我无法发现任何设备,我的ArrayList仍然为空。

OnClick execute this:

mBluetoothAdapter.startDiscovery();

我的广播监听器也工作,但没有返回任何东西,ArrayList仍然为空。

private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
public void onReceive(Context context, Intent intent) {
    String action = intent.getAction();
    if (BluetoothDevice.ACTION_FOUND.equals(action)) {
        BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
        mDeviceList.add(device);
        showToast("Found device " + device.getName());
    }
    if (BluetoothAdapter.ACTION_STATE_CHANGED.equals(action)) {
        final int state = intent.getIntExtra(BluetoothAdapter.EXTRA_STATE, BluetoothAdapter.ERROR);
        if (state == BluetoothAdapter.STATE_ON) {
            showToast("Enabled");
            showEnabled();
        }
    }
    if (BluetoothAdapter.ACTION_DISCOVERY_STARTED.equals(action)) {
        mDeviceList = new ArrayList<>();
        mProgressDlg.show();
    }
    if (BluetoothAdapter.ACTION_DISCOVERY_FINISHED.equals(action)) {
        mProgressDlg.dismiss();
        Intent newIntent = new Intent(MainScreen.this, DeviceListActivity.class);
        if (mDeviceList.isEmpty()){
            Log.d("onReceive: ", "EMPTY");
        }
        newIntent.putParcelableArrayListExtra("device.list", mDeviceList);
        startActivity(newIntent);
    }
}

};

依据

回答了我自己的问题。

修复是打开位置与应用程序权限。

显然这是Android Marshmallow所需要的

最新更新