我想知道有没有办法通过蓝牙以编程方式确定连接到我的Android设备的智能手机型号?我知道如何在两个Android设备之间建立蓝牙连接,但如何请求智能手机模型的信息?感谢。
答案 0 :(得分: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
}