if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.LOLLIPOP_MR1) {
// Do this for phones running an SDK before lollipop
_hostBluetoothAddress = bluetoothAdapter.getAddress();
} else {
_hostBluetoothAddress = Settings.Secure.getString(getContentResolver(), "bluetooth_address");
}
使用此代码(在套接字示例 EZPairActivity 中使用)_hostBluetoothAddress 在 Android 8.1 (27) 中始终返回为 null。我尝试使用 ANDROID_ID ,但这似乎也不起作用。无法将 CHS 8Ci 与我的 Pixel XL 配对。