我有我想要进行变量传输的蓝牙设备地址(我已经使用 BluetoothAdapter 来发现设备和......)
现在我需要一个简单的示例来使用套接字发送和接收变量......(我需要使用 BluetoothSocket 对吗?)
我看过蓝牙聊天示例,但我认为其中的许多代码对我来说都很不寻常,所以我想请人帮助我提供一个简单的示例代码,以便轻松发送整数和接收字符串,请。
我之前检查过蓝牙支持并找到设备的蓝牙地址。
我有这样的东西:
BlutetoothAdapter mBluetoothAdapter;
mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
string Address; // BluetoothAddress of wanted device saved into that
int IntToSend; // Integer I need to send
// HERE I need the codes to SEND MY INTEGER VARIABLE TO THAT DEVICE
// I NEED CODES TO LET ME SENT STRING FROM THAT DEVICE HERE
有人能帮助我吗 ?
已解决:我使用了这个简单的教程: http: //manojprasaddevelopers.blogspot.com/2012/02/bluetooth-data-transfer-example.html
由于声誉低下,我要到接下来的几个小时才能回答我的问题,所以我编辑了我的帖子。无论如何,对不起,如果这不是一个好问题,请。:)
编辑 2:毕竟,也使用了 BluetoothChat 示例...... :)