2014-08-28 3 views

답변

0

이 작업에 대한 BluetoothManager :

List<BluetoothDevice> connectedDevices = this.getSystemService(Context.BLUETOOTH_SERVICE) 
              .getConnectedDevices(BluetoothProfile.GATT); //or BluetoothProfile.GATT_SERVER 

for(BluetoothDevice bd : connectedDevices){ 
    String remoteName = bd.getName(); 
//do something 
} 
관련 문제