我正尝试将字符串传递给蓝牙对设备而不连接到它们,因此,我决定将该字符串传递给设备蓝牙名称,但是问题是当我尝试从双对中获取该名称时设备有时我得到设备蓝牙名称,而其他人得到设备制造商名称,我的问题是为什么要获得设备制造商名称,以及如何从成对中获得设备蓝牙名称。
@Override
public void onDeviceDiscovered(BluetoothDevice device, int rssi) {
Toast.makeText(this," device NAME " + device.getName(), Toast.LENGTH_SHORT).show();
// the problem it always return the device manufacture name on Galaxy j5 and sometimes it return the device manufacture name on oppo f7
}