gpt4 book ai didi

安卓蓝牙-源代码

转载 作者:行者123 更新时间:2023-11-29 15:31:26 33 4
gpt4 key购买 nike

数周以来,我一直在为 Android 上的蓝牙项目而苦苦挣扎。有谁知道我可以去哪里查看 Google 用于使其蓝牙配对和连接逻辑正常工作的实际代码?

我浏览了所有的文档、BluetoothChat 应用程序(它没有像宣传的那样工作......在 3 种不同的手机上试过),以及网上的许多其他网站,但仍然没有成功。我需要在 2.1 或更高版本上启动并运行应用。

非常感谢任何建议或帮助。

最佳答案

是的,蓝牙项目对我也不起作用,因为套接字连接代码不起作用

 // Get a BluetoothSocket for a connection with the
// given BluetoothDevice
try {
if (secure) {
tmp = device.createRfcommSocketToServiceRecord(
MY_UUID_SECURE);
} else {
tmp = device.createInsecureRfcommSocketToServiceRecord(
MY_UUID_INSECURE);
}
} catch (IOException e) {
Log.e(TAG, "Socket Type: " + mSocketType + "create() failed", e);
}

这是行不通的......

将其替换为以下代码

BluetoothDevice hxm = BluetoothAdapter.getDefaultAdapter().getRemoteDevice(device.getAddress());
Method m;
m = hxm.getClass().getMethod("createRfcommSocket", new Class[]{int.class});
socket = (BluetoothSocket)m.invoke(hxm, Integer.valueOf(1));

关于安卓蓝牙-源代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6093525/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com