查找蓝牙设备的类型,无论是移动设备、笔记本电脑还是 Mac 电脑
我正在开发一个使用蓝牙玩的 Android 游戏应用程序。搜索蓝牙设备时,结果包含移动设备以及 Mac PC/笔记本电脑。我只想在结果列表中列出移动设备。是否可以判断检测到的设备是否是移动设备?
I am developing an android game application played using bluetooth. While searching for bluetooth device, results contain both mobile devices as well as mac pc/laptops. I would like to list only the mobile devices in my result list. Is it possible to find whether the device detected is mobile device or not?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您有 BluetoothDevice 时,您可以调用 getBluetoothClass。智能手机预计具有 PHONE_SMART 值,而计算机应该有 COMPUTER_* 值(例如 COMPUTER_DESKTOP 或 COMPUTER_LAPTOP)。
When you have BluetoothDevice you can call getBluetoothClass. Smart phones are expected to have PHONE_SMART value, while computers should have COMPUTER_* values (for example COMPUTER_DESKTOP or COMPUTER_LAPTOP).