所以我正在开发一个连接到嵌入式蓝牙设备的应用程序。该设备以不同版本推出,在我的测试设备上,一切正常。通过安全的 rfcomm 套接字进行通信。然而,另一组设备让我毛骨悚然。他们有点失去了边界状态。虽然它们被标记为已配对,但每次我建立连接时,都会要求我重新输入 PIN 码。而这真的不是我们想要的。此外,这种行为不会发生在所有设备上,而是发生在大多数设备上。实际上,唯一不会忘记 PIN 的设备是 Galaxy Nexus S。三星 Galaxy Nexus、ACE、GIO 和 X10 mini Pro 往往会“忘记”该设备之前已配对。使用 API lvl 10,我已经尝试过不安全的 RFCOMM 连接,但没有成功。
我在这里迷路了。有人有想法吗?

此致!

最佳答案

你的设备的 getBTMajorDeviceClass 是什么?
如果是BluetoothClass.Device.Major.UNCATEGORIZED,尝试生成自己的UUID:

private UUID generateUuid() {
String android_id = Secure.getString(getApplicationContext()
    .getContentResolver(), Secure.ANDROID_ID);
Log.i("System out", "android_id : " + android_id);

final TelephonyManager tm = (TelephonyManager) getBaseContext()
    .getSystemService(Context.TELEPHONY_SERVICE);

final String tmDevice, tmSerial, androidId;
tmDevice = "" + tm.getDeviceId();
Log.i("System out", "tmDevice : " + tmDevice);
tmSerial = "" + tm.getSimSerialNumber();
Log.i("System out", "tmSerial : " + tmSerial);
androidId = ""
    + android.provider.Settings.Secure.getString(
        getContentResolver(),
        android.provider.Settings.Secure.ANDROID_ID);

UUID deviceUuid = new UUID(androidId.hashCode(),
    ((long) tmDevice.hashCode() << 32) | tmSerial.hashCode());

return deviceUuid;
}

并在创建套接字时使用它 createRfcommSocketToServiceRecord(generateUuid());
*需要 READ_PHONE_STATE

10-08 09:12