无需配对的蓝牙连接

Bluetooth connection without pairing(无需配对的蓝牙连接)
本文介绍了无需配对的蓝牙连接的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在寻找一种方法,无需先配对即可使用蓝牙连接两部手机.我试图省略烦人的蓝牙弹出请求.谷歌商店有一个应用程序叫做 Bluehood.我想将这种连接方式用于我在一个完全不同的领域中构建的应用程序.您可以在谷歌商店搜索名为Bluehood Social Bluetooth"的应用程序.https://play.google.com/store/apps/details?id=com.mobile.bluehood

I was looking to find a method to connect two phones using bluetooth without having to first pair them. I am trying to omit the annoying bluetooth pop up request. There is an app on the google store that does this called Bluehood. I wanted to use that style of connection for an app I am building in a totally different niche. You can search for the app on the google store called "Bluehood Social Bluetooth". https://play.google.com/store/apps/details?id=com.mobile.bluehood

推荐答案

您可能会在两个设备之间创建不安全的蓝牙串行连接.

You may create an insecure bluetooth serial connection between two devices.

创建连接:

识别BluetoothDevice并调用其方法createInsecureRfcommSocketToServiceRecord

接收连接:

获取BluetoothAdapter并调用方法listenUsingInsecureRfcommWithServiceRecord

此技术不需要设备使用配对代码建立连接.它适用于 API 级别 10 及更高级别.

This technique won't require the devices to establish a connection using pairing code. Its available in API level 10 and above.

这篇关于无需配对的蓝牙连接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How to target newer versions in .gitlab-ci.yml using auto devops (java 11 instead of 8 and Android 31 instead of 29)(如何在.gitlab-ci.yml中使用自动开发工具(Java 11而不是8,Android 31而不是29)瞄准较新的版本)
Android + coreLibraryDesugaring: which Java 11 APIs can I expect to work?(Android+core LibraryDesugering:我可以期待哪些Java 11API能够工作?)
How to render something in an if statement React Native(如何在If语句中呈现某些内容Reaction Native)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Using Firebase Firestore in offline only mode(在仅脱机模式下使用Firebase FiRestore)
Crash on Google Play Pre-Launch Report: java.lang.NoSuchMethodError(Google Play发布前崩溃报告:java.lang.NoSuchMethodError)