我正试图把我的英语与我的诺基亚电话连接起来。 我可以通过我的Andorid应用程序发现Nokia电话。 我可以成功地编造袖珍:
btSocket = device.createRfcommSocketToServiceRecord(MY_UUID);
But when I try to connect to the nokia phone there is an error in connection. I am trying to run this sample provided in the link below:
在以下情况下发生错误:实施<代码>btSocket.link(),该代码载于onResume(
):
Logcat:
D/BluetoothAdapter( 176): checkBluetoothAddress
E/THINBTCLIENT( 4738): ON RESUME: Exception during connect.
E/THINBTCLIENT( 4738): java.io.IOException: Service discovery failed
E/THINBTCLIENT( 4738): at android.bluetooth.BluetoothSocket$SdpHelper.doSdp(BluetoothSocket.java:377)
E/THINBTCLIENT( 4738): at android.bluetooth.BluetoothSocket.connect(BluetoothSocket.java:201)<br>
E/THINBTCLIENT( 4738): at android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1149)
页: 1 UUID 我正在使用:
private static final UUID MY_UUID = UUID.fromString("00001101-0000-1000-8000-00805F9B34FB");`
请允许我知道,我在哪里会错了。 我试图在Stackoverflow和整个互联网上寻求帮助,但找不到帮助。