我想访问包含在 BluetoothDevice.ACTION_FOUND 中的额外内容,例如,如果我想访问包含在 BluetoothDevice.EXTRA_CLASS 中的值,我应该在代码中使用它,但是当我显示变量“状态”的值时",类似于 -245175
BluetoothDevice.EXTRA_CLASS 中是否还有其他值?我应该怎么认识他们?我应该如何访问它们?
更新:
我注册的意图是:BluetoothDevice.ACTION_FOUND
代码:
switch (action) {
case BluetoothDevice.ACTION_FOUND:
Log.d(TAG, LogAnd.i("onReceive", "BluetoothDevice.ACTION_FOUND"));
final int state = intent.getIntExtra(BluetoothDevice.EXTRA_CLASS, BluetoothAdapter.ERROR);
Log.d(TAG, LogAnd.i("onReceive", "state: "+state));
break;