Android 4.0蓝牙配对:每次都需要输入密码
Posted
技术标签:
【中文标题】Android 4.0蓝牙配对:每次都需要输入密码【英文标题】:Android 4.0 Bluetooth-Pairing: Need to enter password everytime 【发布时间】:2012-06-03 19:21:08 【问题描述】:我在使用 android 4 (ICS) 时遇到问题 我的蓝牙应用程序连接到串行设备就像在 Android 3 上的魅力一样。
但是,在使用 Android 4 时,每次我连接到(已经配对的)设备时,它都会显示“配对”对话框。
用户必须一遍又一遍地重新输入相同的密码。 有什么方法可以抑制 Android 4 中的这种行为吗?它是一个新的错误吗?有解决办法吗? 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;
提前致谢
顺便说一句:如何确保在连接之前停止从我的平板电脑到此蓝牙设备的所有其他连接?
【问题讨论】:
可能与this bug 相关。似乎谷歌喜欢破坏蓝牙。 请在下面的 URl 中找到解决方案,我的工作正常 ***.com/questions/11082819/… 【参考方案1】:我认为这不是您的软件的问题。在我拿到带有 ICS 的手机后,我在 RunKeeper 和 Polar BT 心率监测器上看到了同样的问题。我在 HTC Desire 上使用 stock ROM 或 CM7 时没有遇到过这个问题。
【讨论】:
奇怪的是,这个问题在三星 Galaxy Note ICS(官方)上不存在。您是否安装了 CM9 或带有官方 ICS 的手机?因为只有 CM9 对我来说失败了,所以我可以很高兴地忽略它。【参考方案2】:有类似问题:Bluetooth connection on Android ICS not possible
尝试获取不安全的 Socket:
bluetoothSocket = bluetoothDevice.createInsecureRfcommSocketToServiceRecord(READER_UUID);
【讨论】:
感谢您的解决方案,但在我的特殊情况下,我不想忽略安全性。 (Android Docs 声明“通信通道将没有经过身份验证的链接密钥,即它将受到中间人攻击”)以上是关于Android 4.0蓝牙配对:每次都需要输入密码的主要内容,如果未能解决你的问题,请参考以下文章