如何确定连接到我的设备的智能手机的型号

时间:2014-08-28 15:30:39

标签: android bluetooth

我想知道有没有办法通过蓝牙以编程方式确定连接到我的Android设备的智能手机型号?我知道如何在两个Android设备之间建立蓝牙连接,但如何请求智能手机模型的信息?感谢。

1 个答案:

答案 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
}