Android 蓝牙自动匹配PIN码跳过用户交互

news/2025/1/17 23:59:45/

近期项目中需要连接蓝牙设备,起初只是设置蓝牙列表界面让用户点击然后输入默认PIN码,后来改需求了 = = ,要求自动连接指定设备并不需要用户手动输入PIN码,作为Android 小白的我是拒绝的,但是拒绝有什么用~

首先说一下之后会用到的关于蓝牙方面的东西:

  • 断开蓝牙已配对的设备
  • 搜索附近蓝牙设备
  • 拦截用户交互页面,使用代码输入
  • 由于在最后连接的时候使用的是设备的SDK所以在这里就不介绍了

1.断开已配对设备

最后在项目中发现没有用。这里就先记录一下。

    //得到配对的设备列表,清除已配对的设备public void removePairDevice() {if (mBluetoothAdapter != null) {//mBluetoothAdapter初始化方式 mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();//这个就是获取已配对蓝牙列表的方法Set<BluetoothDevice> bondedDevices = mBluetoothAdapter.getBondedDevices();for (BluetoothDevice device : bondedDevices) {//这里可以通过device.getName()  device.getAddress()来判断是否是自己需要断开的设备unpairDevice(device);}}}//反射来调用BluetoothDevice.removeBond取消设备的配对private void unpairDevice(BluetoothDevice device) {try {Method m = device.getClass().getMethod("removeBond", (Class[]) null);m.invoke(device, (Object[]) null);} catch (Exception e) {Log.e("mate", e.getMessage());}}

2.搜索附近蓝牙

首先我们需要注册两个广播,第一个为正在搜索时的,第二个为搜索完成的。

        // Register for broadcasts when a device is discoveredIntentFilter filter = new IntentFilter(BluetoothDevice.ACTION_FOUND);this.registerReceiver(mFindBlueToothReceiver, filter);// Register for broadcasts when discovery has finishedfilter = new IntentFilter(BluetoothAdapter.ACTION_DISCOVERY_FINISHED);this.registerReceiver(mFindBlueToothReceiver, filter);//需要时开始搜索if (mBluetoothAdapter.isDiscovering()) {mBluetoothAdapter.cancelDiscovery();}mBluetoothAdapter.startDiscovery();

然后对广播进行处理。这里要说明一下ClsUtils.createBond()这个方法如果连接设备SDK中有配对的方法,建议把这个方法去掉,我这里是去掉的,加上的话偶尔会Toast出无法配对。

 private final BroadcastReceiver mFindBlueToothReceiver = new BroadcastReceiver() {@Overridepublic void onReceive(Context context, Intent intent) {String action = intent.getAction();// When discovery finds a deviceif (BluetoothDevice.ACTION_FOUND.equals(action)) {//TODO 开始搜索BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);//   if (device.getBondState() != BluetoothDevice.BOND_BONDED) {//判断蓝牙状态,是否是已配对//TODO 可以在这判断名字 如果搜索结束后没有,再到已配对中寻找String BTName[] = device.getName().split("-");if (BTName[0].equals("xxx")) {//在这连接设备 一般需要蓝牙地址 device.getAddress();try {ClsUtils.createBond(device.getClass(), device);} catch (Exception e) {// TODO Auto-generated catch blocke.printStackTrace();}}//  }} else if (BluetoothAdapter.ACTION_DISCOVERY_FINISHED.equals(action)) {//TODO 搜索结束Toast.makeText(context, "搜索结束",Toast.LENGTH_SHORT).show();}}};

这里在Activity结束时记得取消注册和取消搜索

unregisterReceiver(mFindBlueToothReceiver);if (mBluetoothAdapter != null) {mBluetoothAdapter.cancelDiscovery();}

3.拦截用户交互页面

通过广播可以监听到输入PIN码的那个页面将要弹出

       <receiver android:name=".BluetoothConnectActivityReceiver" ><intent-filter android:priority="1000"><action android:name="android.bluetooth.device.action.PAIRING_REQUEST" /></intent-filter></receiver>

广播中需要做的事情,注意一定要调用abortBroadcast(),不然交互页面还是会出现一下然后消失。就是这个方法找了一天(╯‵□′)╯︵┴─┴。。。

public class BluetoothConnectActivityReceiver extends BroadcastReceiver {@Overridepublic void onReceive(Context context, Intent intent) {if (intent.getAction().equals("android.bluetooth.device.action.PAIRING_REQUEST")) {BluetoothDevice mBluetoothDevice = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);try {//(三星)4.3版本测试手机还是会弹出用户交互页面(闪一下),如果不注释掉下面这句页面不会取消但可以配对成功。(中兴,魅族4(Flyme 6))5.1版本手机两中情况下都正常//ClsUtils.setPairingConfirmation(mBluetoothDevice.getClass(), mBluetoothDevice, true);abortBroadcast();//如果没有将广播终止,则会出现一个一闪而过的配对框。//3.调用setPin方法进行配对...boolean ret = ClsUtils.setPin(mBluetoothDevice.getClass(), mBluetoothDevice, "你需要设置的PIN码");} catch (Exception e) {e.printStackTrace();}}}
}

然后只要在搜索到自己需要的设备后连接进行操作就可以了!!!一定要记得加权限~

 <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" /><uses-permission android:name="android.permission.BLUETOOTH" />

在Android6.0之后还需要一个模糊定位的权限

<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />

最后把ClsUtils类奉上,网上有很多的。

/**************** 蓝牙配对函数 ***************/import java.lang.reflect.Field;
import java.lang.reflect.Method;import android.bluetooth.BluetoothDevice;
import android.util.Log;public class ClsUtils {/*** 与设备配对 参考源码:platform/packages/apps/Settings.git* /Settings/src/com/android/settings/bluetooth/CachedBluetoothDevice.java*/static public boolean createBond(Class btClass, BluetoothDevice btDevice) throws Exception {Method createBondMethod = btClass.getMethod("createBond");Boolean returnValue = (Boolean) createBondMethod.invoke(btDevice);return returnValue.booleanValue();}/*** 与设备解除配对 参考源码:platform/packages/apps/Settings.git* /Settings/src/com/android/settings/bluetooth/CachedBluetoothDevice.java*/static public boolean removeBond(Class<?> btClass, BluetoothDevice btDevice) throws Exception {Method removeBondMethod = btClass.getMethod("removeBond");Boolean returnValue = (Boolean) removeBondMethod.invoke(btDevice);return returnValue.booleanValue();}static public boolean setPin(Class<? extends BluetoothDevice> btClass, BluetoothDevice btDevice, String str) throws Exception {try {Method removeBondMethod = btClass.getDeclaredMethod("setPin", new Class[]{byte[].class});Boolean returnValue = (Boolean) removeBondMethod.invoke(btDevice,new Object[]{str.getBytes()});Log.e("returnValue", "" + returnValue);} catch (SecurityException e) {// throw new RuntimeException(e.getMessage());e.printStackTrace();} catch (IllegalArgumentException e) {// throw new RuntimeException(e.getMessage());e.printStackTrace();} catch (Exception e) {// TODO Auto-generated catch blocke.printStackTrace();}return true;}// 取消用户输入static public boolean cancelPairingUserInput(Class<?> btClass, BluetoothDevice device) throws Exception {Method createBondMethod = btClass.getMethod("cancelPairingUserInput");
//        cancelBondProcess(btClass, device);Boolean returnValue = (Boolean) createBondMethod.invoke(device);return returnValue.booleanValue();}// 取消配对static public boolean cancelBondProcess(Class<?> btClass, BluetoothDevice device) throws Exception {Method createBondMethod = btClass.getMethod("cancelBondProcess");Boolean returnValue = (Boolean) createBondMethod.invoke(device);return returnValue.booleanValue();}//确认配对static public void setPairingConfirmation(Class<?> btClass, BluetoothDevice device, boolean isConfirm) throws Exception {Method setPairingConfirmation = btClass.getDeclaredMethod("setPairingConfirmation", boolean.class);setPairingConfirmation.invoke(device, isConfirm);}/**** @param clsShow*/static public void printAllInform(Class clsShow) {try {// 取得所有方法Method[] hideMethod = clsShow.getMethods();int i = 0;for (; i < hideMethod.length; i++) {Log.e("method name", hideMethod[i].getName() + ";and the i is:"+ i);}// 取得所有常量Field[] allFields = clsShow.getFields();for (i = 0; i < allFields.length; i++) {Log.e("Field name", allFields[i].getName());}} catch (SecurityException e) {// throw new RuntimeException(e.getMessage());e.printStackTrace();} catch (IllegalArgumentException e) {// throw new RuntimeException(e.getMessage());e.printStackTrace();} catch (Exception e) {// TODO Auto-generated catch blocke.printStackTrace();}}
}

文章最后提供两篇促使我写这篇文章的背后资源╮( ̄▽ ̄)╭。
Markdown新手指南
Android蓝牙自动配对Demo,亲测好使!!!

第一次写文章,不知道会是什么效果,我的第一次就这么出去了o(〃'▽'〃)o。


http://www.ppmy.cn/news/510672.html

相关文章

笔记本蓝牙显示输入码无效_蓝牙键盘输入码错误无法连接笔记本(win10)

在研究室用三星笔记本写论文&#xff0c;ctrl键敲坏了(现在看来是复制黏贴用的太多) 于是买了个蓝牙键盘&#xff0c;省的跑a/s浪费时间&#xff0c;可是花了一上午才终于搞定了&#xff0c;还不如上午去趟客服分分钟换个ctrl键来的简单...... 那如何解决蓝牙键盘不能连接笔记本…

手机蓝牙连接小票机/打印机,输入PIN码后确定键不亮的解决办法

如果以前配对过&#xff0c;就在手机蓝牙里取消配对&#xff0c;然后把机器关掉&#xff0c;手机蓝牙关掉。 重新配对连接&#xff0c;可以用了。 就没有重启不能解决的问题&#xff0c;如果有&#xff0c;就重启两遍。

3、低功耗蓝牙(BLE)配对和解绑

本文将对以上问题进行论述。 什么是低功耗蓝牙配对&#xff1f;什么又是绑定&#xff1f;配对和绑定有什么区别&#xff1f;配对有什么好处&#xff1f;如何删除绑定信息&#xff1f;如何确定配对的安全等级&#xff1f;just work的配对一定就不安全吗&#xff1f;如何开…

请解释下为什么鹿晗发布恋情的时候,微博系统会崩溃,如何解决?

出题人&#xff1a;阿里巴巴出题专家&#xff1a;江岚&#xff0f;阿里巴巴数据技术高级技术专家 参考答案&#xff1a; A. 获取微博通过 pull 方式还是 push 方式 B. 发布微博的频率要远小于阅读微博 C. 流量明星的发微博&#xff0c;和普通博主要区分对待&#xff0c;比如…

红米手机首位代言人公布!“国民大叔”吴秀波

红米手机首日前&#xff0c;小米宣布将为红米手机寻找代言人&#xff0c;而且是“大咖”级别的存在。 在消息公布后&#xff0c;米粉们纷纷猜测红米手机的代言人究竟是何方神圣。但由于小米官方给出的信息实在太少&#xff0c;所以很难猜出正确答案。 今天&#xff0c; 小米官…

2020-08-05:请解释下为什么鹿晗发布恋情的时候, 微博系统会崩溃,如何解决?

福哥答案2020-08-05&#xff1a; A.获取微博通过 pull 方式还是push 方式。 B.发布微博的频率要远小于阅读微博。 C.流量明星的发微博&#xff0c;和普通博主要区分对待&#xff0c;比如在 sharding的时候&#xff0c;也要考虑这个因素。 访问流量超过了系统阈值&#xff0c;…

鹿晗关晓彤公开恋情,是如何把新浪微博的服务器搞垮的?

鹿晗关晓彤公开恋情&#xff0c;是如何把新浪微博的服务器搞垮的&#xff1f; 我觉得不像数据库挂了&#xff0c;微博这种级别的架构根本不是简单的分布式serverDB就能抗住的&#xff0c;别说鹿晗关晓彤搞个大新闻&#xff0c;就算平时运营的压力也扛不住。 刚才王高飞说加一千…

大数据揭秘电影《上海堡垒》——鹿晗是不是糊了?

作者 | AlfredWu 来源 | Alfred数据室 由流量元老鹿晗主演的《上海堡垒》自8月9日上映以来&#xff0c;争议批评声音不绝于耳&#xff0c;电影票房也败走麦城。豆瓣评分3.2&#xff0c;猫眼评分5.8&#xff0c;观众用低评分表达了对于这部电影主创人员的强烈不满&#xff0c;特…