Android 4.0蓝牙配对:每次都需要输入密码

时间:2012-06-03 19:21:08

标签: android bluetooth passwords connection android-4.0-ice-cream-sandwich

我有Android 4(ICS)的问题 我的蓝牙应用程序连接到串行设备就像Android 3上的魅力一样。

然而,当使用Android 4时,每当我连接到(已经配对的)设备时,它都会显示“配对”对话框。

用户必须一遍又一遍地重新输入相同的引脚。 有没有办法在Android 4中压制这种行为?这是一个新的bug吗?有工作吗? BluetoothDevice是否需要对Android 4进行某种调整?我做错了什么?

 /**
 * Start the ConnectThread to initiate a connection to a remote bluetoothDevice.
 */
public synchronized InitResponse init() {
    if (D) Log.d(TAG, "init to: " + bluetoothDevice);

    setState(State.CONNECTING);

    try {
        if (D) Log.i(TAG, "Trying to create RfcommSocket using reflection");
        Method m = bluetoothDevice.getClass().getMethod("createRfcommSocket",
                new Class[] { int.class });
        bluetoothSocket = (BluetoothSocket)m.invoke(bluetoothDevice, 1);
    } catch (Exception e) {
        if (D) Log.w(TAG, "Reflection failed.", e);
        if (D) Log.i(TAG, "Trying to create RfcommSocket using UUID");
        try {
            bluetoothSocket = bluetoothDevice.createRfcommSocketToServiceRecord(READER_UUID);
        } catch (IOException e2) {
            Log.e(TAG, "create() failed", e2);
            disconnect();
            return InitResponse.READER_NOT_FOUND;
        }
    }

    if (D) Log.i(TAG, "Bluetooth Socket: " + bluetoothSocket);
    if (D) Log.i(TAG, "Trying to connect.");

    try {
        bluetoothAdapter.cancelDiscovery();
        if (D) Log.i(TAG, "Cancelled discovery.");
        if (D) Log.i(TAG, "Attempting to connect.");
        bluetoothSocket.connect();                   // Causes pairing dialog everytime I call it.
    } catch (IOException e) {
        if (D) Log.w(TAG, "Error while connecting.");
        // Close the socket
        try {
            bluetoothSocket.close();
        } catch (IOException e2) {
            Log.e(TAG, "unable to close() socket during connection failure", e2);
        } finally {
            disconnected();
        }
        return InitResponse.CONNECTION_ERROR;
    }

    if(D) Log.d(TAG, "Connected to bluetoothReader " + bluetoothDevice + " established.");

    try {
        inputStream = bluetoothSocket.getInputStream();
        if(D) Log.d(TAG, "Input Stream: " + inputStream);
        outputStream = bluetoothSocket.getOutputStream();
        if(D) Log.d(TAG, "Output Stream: " + outputStream);
    } catch (IOException e) {
        Log.e(TAG, "Temp sockets not created", e);
        disconnected();
        return InitResponse.CONNECTION_ERROR;
    }

    if (D) Log.i(TAG, "Setting state to CONNECTED");

    setState(State.CONNECTED);
    if (D) Log.i(TAG, "Init successfull.");
    return InitResponse.SUCCESS;
}

提前致谢

顺便说一句:在连接之前,如何确保从我的平板电脑到此蓝牙设备的所有其他连接都已停止?

2 个答案:

答案 0 :(得分:1)

我认为这不是您的软件的问题。在我拿到带ICS的手机后,我看到RunKeeper和我的Polar BT心率监测器出现了同样的问题。我没有使用库存ROM或CM7在HTC Desire上遇到这个问题。

答案 1 :(得分:1)

有类似的问题:Bluetooth connection on Android ICS not possible

试着找一个不安全的Socket:

bluetoothSocket = bluetoothDevice.createInsecureRfcommSocketToServiceRecord(READER_UUID);