我必须在android中创建一个通过蓝牙连接到设备的应用。 此设备已将名称设置为“ 1111”,在我的android应用程序中,我有四个editText输入数字。 通过单击“ collega”按钮,我希望该应用程序直接连接到设备。
我在按钮上创建了一个单击侦听器,首先检查蓝牙是否已激活,然后尝试使用load()函数将其连接。 加载功能会寻找附近的设备名称为“ 1111”的设备,但之后我不知道如何连接它。
final Button collega = (Button) findViewById(R.id.button2);
collega.setOnClickListener(new View.OnClickListener(){
@Override
public void onClick(View arg0) {
if (!btAdapter.isEnabled())
{ Intent turnOn = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
startActivityForResult(turnOn, BLUETOOTH_ON); }
else
load(); }
});
}
private void load() {
final EditText uno=(EditText)findViewById(R.id.numero1);
final EditText due=(EditText)findViewById(R.id.numero2);
final EditText tre=(EditText)findViewById(R.id.numero3);
final EditText quattro=(EditText)findViewById(R.id.numero4);
String deviceNumber=uno.getText().toString()+due.getText().toString()+tre.getText().toString()+quattro.getText().toString();
TextView textView = (TextView) findViewById(R.id.simpleTextView);
textView.setText(deviceNumber);
devices = btAdapter.getBondedDevices();
adapter.clear();
for(BluetoothDevice bt : devices)
{
if(bt.getName()==deviceNumber){
}
}
}
我在线搜索,但只找到如何创建要连接的设备列表。有人可以创建连接以及如何流传输数据吗?
答案 0 :(得分:0)
您可以创建一个线程来连接蓝牙插座。
一个简单的例子可以在这里找到: https://developer.android.com/guide/topics/connectivity/bluetooth#ConnectAsAClient