当我的应用程序启动时,我想检查android设备是否连接到蓝牙鼠标,并监听连接的事件。
我该怎么办?
谢谢!
答案 0 :(得分:1)
使用Android Bluetooth APIs,您可以获得连接设备列表,如下所示:
BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter();
Set<BluetoothDevice> pairedDevices = mBluetoothAdapter.getBondedDevices();
没有什么好方法可以判断连接的设备类型,但您可以通过迭代pairedDevices
设置来浏览设备及其名称。 Android蓝牙指南提供了有关蓝牙的更多详细信息。