Android 蓝牙连接 HID 设备

Android 蓝牙连接 HID 设备

我连接的是蓝牙拍照遥控器。

最开始按照网上的思路,以为需要使用 BLE 方式去连接设备,然后接收设备的数据。连接成功后,一直收不到消息。

最后,机缘巧合下,更换连接方式,使用蓝牙 HID 方式去配对设备,但是没有给出如何收消息。

重写了 dispatchKeyEvent 方法,发现按蓝牙遥控器,有按键回调消息。

原来这样的 HID 设备,我们可以不用自己去连接,直接使用系统的蓝牙连接后,然后在 dispatchKeyEvent 中对按键事件处理即可。

java 复制代码
    private void getDeviceInfo(int id) {
        InputManager im = (InputManager) getSystemService(Context.INPUT_SERVICE);
        InputDevice device = im.getInputDevice(id);
        Log.e("WillWolf", "getDeviceInfo-->" + device.toString());
    }

    @Override
    public boolean dispatchKeyEvent(KeyEvent event) {
        Log.e("WillWolf", "dispatchKeyEvent-->");
        Toast.makeText(this, "按钮点击", Toast.LENGTH_SHORT).show();

		// 这里通过事件的 device id,可以获取到输入的设备信息,比如我的是绿联的蓝牙遥控器,那么打印的信息中,设备名字就是 UGREEN,可以根据这个对事件来源做区分。
        getDeviceInfo(event.getDeviceId());

		// 这里的事件来源不一定是 MOUSE 也可能是 SOURCE_KEYBOARD
        if (event.getSource() == InputDevice.SOURCE_MOUSE) {
            Log.e("WillWolf", "dispatchKeyEvent--> SOURCE_MOUSE");
        }
        return true;
    }

哎,折腾了半天,才发现原来某些 HID 类型的设备,或许不需要使用 BLE 方式去获取信息。

相关推荐
长亭外的少年6 小时前
Kotlin 编译失败问题及解决方案:从守护进程到 Gradle 配置
android·开发语言·kotlin
建群新人小猿9 小时前
会员等级经验问题
android·开发语言·前端·javascript·php
1024小神10 小时前
tauri2.0版本开发苹果ios和安卓android应用,环境搭建和最后编译为apk
android·ios·tauri
兰琛10 小时前
20241121 android中树结构列表(使用recyclerView实现)
android·gitee
Y多了个想法11 小时前
RK3568 android11 适配敦泰触摸屏 FocalTech-ft5526
android·rk3568·触摸屏·tp·敦泰·focaltech·ft5526
NotesChapter12 小时前
Android吸顶效果,并有着ViewPager左右切换
android
_祝你今天愉快13 小时前
分析android :The binary version of its metadata is 1.8.0, expected version is 1.5.
android
暮志未晚Webgl13 小时前
109. UE5 GAS RPG 实现检查点的存档功能
android·java·ue5
麦田里的守望者江14 小时前
KMP 中的 expect 和 actual 声明
android·ios·kotlin
Dnelic-14 小时前
解决 Android 单元测试 No tests found for given includes:
android·junit·单元测试·问题记录·自学笔记