gpt4 book ai didi

android - 如何在android中获取蓝牙连接设备的MAC地址

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:44:22 25 4
gpt4 key购买 nike

我在 android 中通过蓝牙发送图像,想获取图像发送到的设备的 MAC 地址。

请在下面找到我的代码。

private void bluetoothadd(){
BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
if (mBluetoothAdapter == null) {
// Device does not support Bluetooth

Log.e("Bluetooth ","not found");
}

if (!mBluetoothAdapter.isEnabled()) {
Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
startActivity(enableBtIntent);

Set<BluetoothDevice> pairedDevices = mBluetoothAdapter.getBondedDevices();
// If there are paired devices
if (pairedDevices.size() > 0) {
// Loop through paired devices
for (BluetoothDevice device : pairedDevices) {


Log.e("Mac Addressess","are: "+mBluetoothAdapter.getRemoteDevice(device.getAddress()));
}
}
}

}

我正在获取所有配对设备的 MAC 地址。我只需要数据正在传输到的设备的 MAC 地址。

最佳答案

使用这个:

BluetoothDevice device = mBluetoothAdapter.getRemoteDevice(address);

关于android - 如何在android中获取蓝牙连接设备的MAC地址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19315523/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com