如何获取正在使用的蓝牙名称?
现在我的手机连接了两个蓝牙耳机,其中一个正在使用中,另一个正处于连接状态。如何获取正在使用的蓝牙耳机的名称?目前,我已经知道如何获得蓝牙耳机的名称,但我无法得到哪一个正在使用。有没有可用的接口?
// 这时获取所有蓝牙设备的方法
mAdapter = BluetoothAdapter.getDefaultAdapter();
mAdapter.getProfileProxy(ctx, new BluetoothProfile.ServiceListener() {
@Override
public void onServiceDisconnected(int profile) {
LogUtil.e(TAG, "onServiceDisconnected");
callback.onFail();
}
@Override
public void onServiceConnected(int profile, BluetoothProfile proxy) {
LogUtil.e(TAG, "onServiceConnected");
List<BluetoothDevice> mDevices = proxy.getConnectedDevices();
if (mDevices != null && mDevices.size() > 0) {
LogUtil.e(TAG, "connected devices not null");
for (BluetoothDevice device : mDevices) {
if (device != null) {
mDeviceName = device.getName();
callback.onSuccess(mDeviceName);
}
}
}
callback.onFail();
}
}, mProfileType);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
已经找到解决方法,记录在我的专栏里了,详见https://segmentfault.com/a/11...
BluetoothAdapter.getDefaultAdapter()
我感觉默认的应该就是