0
我對Java很新,目前正在開發一個項目。我設法打開和關閉我的應用程序內的藍牙。我也有一個配對設備列表的列表視圖。我創建了一個「onListItemClick」方法。但是,我似乎無法弄清楚如何與配對設備之一建立連接。任何幫助,將不勝感激。謝謝。建立設備之間的藍牙連接
import java.util.Set;
import android.app.ListActivity;
import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothDevice;
import android.os.Bundle;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.ListView;
public class Devices extends ListActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
ArrayAdapter<String> btArrayAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1);
BluetoothAdapter btAdapter = BluetoothAdapter.getDefaultAdapter();
Set<BluetoothDevice> pairedDevices = btAdapter.getBondedDevices();
if(pairedDevices.size()>0){
for (BluetoothDevice device :pairedDevices){
String name = device.getName();
btArrayAdapter.add(name);
}
}
setListAdapter(btArrayAdapter);
}
@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
super.onListItemClick(l, v, position, id);
//Here, I want to establish a connection with the device chosen by the user
}
}
非常感謝。我只是在嘗試,但它一直給出一個錯誤,說「BluetoothService無法解析爲某種類型」。 – 2013-02-18 16:12:34