我的编程空间,编程开发者的网络收藏夹
学习永远不晚

android系统蓝牙自动连接

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

android系统蓝牙自动连接

实现的主要功能(蓝牙配对成功如何与远程设备一直连接)

1.当蓝牙配对成功连接时,非主动断开会自动连接
2.当设备长时间锁屏会导致CachedBluetoothDevice自动清空,如果蓝牙断开就不会自动连接的处理

实现步骤

监控蓝牙断开连接状态时发生哪些改变媒体音频与通话音频(a2dp与hfp)
1.在com.android.bluetooth.btservice.AdapterProperties这个类中蓝牙连接状态

void sendConnectionStateChange(BluetoothDevice device, int profile, int state, int prevState) {
        if (!validateProfileConnectionState(state) ||
                !validateProfileConnectionState(prevState)) {
            // Previously, an invalid state was broadcast anyway,
            // with the invalid state converted to -1 in the intent.
            // Better to log an error and not send an intent with
            // invalid contents or set mAdapterConnectionState to -1.
            errorLog("Error in sendConnectionStateChange: "
                    + "prevState " + prevState + " state " + state);
            return;
        }
        synchronized (mObject) {
            updateProfileConnectionState(profile, state, prevState);
            if (updateCountersAndCheckForConnectionStateChange(state, prevState)) {
                setConnectionState(state);
                //留意BluetoothAdapter.ACTION_CONNECTION_STATE_CHANGED
                Intent intent = new Intent(BluetoothAdapter.ACTION_CONNECTION_STATE_CHANGED);
                intent.putExtra(BluetoothDevice.EXTRA_DEVICE, device);
                intent.putExtra(BluetoothAdapter.EXTRA_CONNECTION_STATE,
                        convertToAdapterState(state));
                intent.putExtra(BluetoothAdapter.EXTRA_PREVIOUS_CONNECTION_STATE,
                        convertToAdapterState(prevState));
                intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
                mService.sendBroadcastAsUser(intent, UserHandle.ALL,
                        mService.BLUETOOTH_PERM);
                Log.d(TAG, "CONNECTION_STATE_CHANGE: " + device + ": "
                        + prevState + " -> " + state);
            }
        }
    }

2.在com.android.bluetooth.a2dpsink.A2dpSinkStateMachine这个类中蓝牙连接状态


    private class IntentBroadcastHandler extends Handler {
        private void onConnectionStateChanged(BluetoothDevice device, int prevState, int state) {
            Intent intent = new Intent(BluetoothA2dpSink.ACTION_CONNECTION_STATE_CHANGED);
            intent.putExtra(BluetoothProfile.EXTRA_PREVIOUS_STATE, prevState);
            intent.putExtra(BluetoothProfile.EXTRA_STATE, state);
            intent.putExtra(BluetoothDevice.EXTRA_DEVICE, device);
//FIXME            intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
            mContext.sendBroadcast(intent, ProfileService.BLUETOOTH_PERM);
//留意android.bluetooth.a2dp.sink... 及保存参数
            intent = new Intent("android.bluetooth.a2dp.sink.profile.action.CONNECTION_STATE_CHANGED");
            intent.putExtra(BluetoothProfile.EXTRA_PREVIOUS_STATE, prevState);
            intent.putExtra(BluetoothProfile.EXTRA_STATE, state);
            intent.putExtra(BluetoothDevice.EXTRA_DEVICE, device);
            mContext.sendBroadcast(intent, ProfileService.BLUETOOTH_PERM);
            log("Connection state " + device + ": " + prevState + "->" + state);
            mService.notifyProfileConnectionStateChanged(device, BluetoothProfile.A2DP_SINK,
                    state, prevState);
        }
        @Override
        public void handleMessage(Message msg) {
            switch (msg.what) {
                case MSG_CONNECTION_STATE_CHANGED:
                    onConnectionStateChanged((BluetoothDevice) msg.obj, msg.arg1, msg.arg2);
                    break;
            }
        }
    }

3.在com.android.bluetooth.hfpclient.HeadsetClientStateMachine这个类中蓝牙连接状态

// This method does not check for error condition (newState == prevState)
    private void broadcastConnectionState(BluetoothDevice device, int newState, int prevState) {
        Log.d(TAG, "Connection state " + device + ": " + prevState + "->" + newState);
        
        mService.notifyProfileConnectionStateChanged(device, BluetoothProfile.HEADSET_CLIENT,
                newState, prevState);
//留意
        Intent intent = new Intent(BluetoothHeadsetClient.ACTION_CONNECTION_STATE_CHANGED);
        intent.putExtra(BluetoothProfile.EXTRA_PREVIOUS_STATE, prevState);
        intent.putExtra(BluetoothProfile.EXTRA_STATE, newState);
        intent.putExtra(BluetoothDevice.EXTRA_DEVICE, device);
...
        mService.sendBroadcast(intent, ProfileService.BLUETOOTH_PERM);
    }

广播监听com.android.settings.bluetooth.DockEventReceiver

    @Override
    public void onReceive(Context context, Intent intent) {
        if (intent == null)
            return;
     ...
        } else if (BluetoothAdapter.ACTION_STATE_CHANGED.equals(intent.getAction())) {
            int btState = intent.getIntExtra(BluetoothAdapter.EXTRA_STATE, BluetoothAdapter.ERROR);
            Log.d(TAG,"szjjyh ACTION_STATE_CHANGED btState = "+btState);
//蓝牙关闭时停止服务
            if (btState == BluetoothAdapter.STATE_OFF){
                Intent intent2 = new Intent(context, BluetoothConnectService.class);
                context.stopService(intent2);
            }
            if (btState != BluetoothAdapter.STATE_TURNING_ON) {
                Intent i = new Intent(intent);
                i.setClass(context, DockService.class);
                beginStartingService(context, i);
            }
//这下面就是上面留意的几个action及相应的参数
        }else if (BluetoothAdapter.ACTION_CONNECTION_STATE_CHANGED.equals(intent.getAction())) {
            int newState = intent.getIntExtra(BluetoothAdapter.EXTRA_CONNECTION_STATE, 0);
            int oldState = intent.getIntExtra(BluetoothAdapter.EXTRA_PREVIOUS_CONNECTION_STATE, 0);
            changeDeviceStatus(device,newState,oldState,intent,context);
        }else if ("android.bluetooth.a2dp.sink.profile.action.CONNECTION_STATE_CHANGED".equals(intent.getAction())) {
            int newState = intent.getIntExtra(BluetoothProfile.EXTRA_STATE, 0);
            int oldState = intent.getIntExtra(BluetoothProfile.EXTRA_PREVIOUS_STATE, 0);
            changeDeviceStatus(device,newState,oldState,intent,context);
        }else if (BluetoothHeadsetClient.ACTION_CONNECTION_STATE_CHANGED.equals(intent.getAction())) {
            int newState = intent.getIntExtra(BluetoothProfile.EXTRA_STATE, 0);
            int oldState = intent.getIntExtra(BluetoothProfile.EXTRA_PREVIOUS_STATE, 0);
            changeDeviceStatus(device,newState,oldState,intent,context);
        }
    }
    public static void changeDeviceStatus(BluetoothDevice device,int newState, int oldState ,Intent intent,Context context) {
        if (!Utils.isAutoConnectBluetooth()) {
            return;
        }
        Log.d(TAG,"szjjyh changeDeviceStatus newState = "+newState+" oldState = "+oldState+
                "device = "+device.getAddress());
        synchronized (sStartingServiceSync) {
            if (BluetoothAdapter.getDefaultAdapter().isEnabled()) {
                if (oldState==BluetoothProfile.STATE_CONNECTING&&newState == BluetoothProfile.STATE_CONNECTED) {
//留意saveConnectDevice
                    LocalBluetoothPreferences.saveConnectDevice(context,device.getAddress());
                    Intent intent2 = new Intent(context, BluetoothConnectService.class);
                    context.stopService(intent2);
                }else if ((oldState==BluetoothProfile.STATE_CONNECTED||oldState==BluetoothProfile.STATE_CONNECTING)
                        &&newState == BluetoothProfile.STATE_DISCONNECTED){
                    if (LocalBluetoothPreferences.getConnectDevice(context,"").equals(device.getAddress())) {
                        Intent i = new Intent(intent);
                        i.setClass(context, BluetoothConnectService.class);
                        beginStartingService(context, i);
                    }
                }else if (oldState==BluetoothProfile.STATE_DISCONNECTING&&newState == BluetoothProfile.STATE_DISCONNECTED){
                    Intent intent2 = new Intent(context, BluetoothConnectService.class);
                    context.stopService(intent2);
                }else if (oldState==BluetoothProfile.STATE_CONNECTED&&newState == BluetoothProfile.STATE_DISCONNECTING){
                    LocalBluetoothPreferences.saveConnectDevice(context,"");
                }
            }
        }
    }

com.android.settings.bluetooth.LocalBluetoothPreferences存储值

    static void saveConnectDevice(Context context, String addr) {
        SharedPreferences.Editor editor = getSharedPreferences(context).edit();
        editor.putString(KEY_CONNECT_DEVICE , addr);
        editor.apply();
    }

com.android.settings.bluetooth.DeviceProfilesSettings点击断开连接时取消保存

public final class DeviceProfilesSettings extends DialogFragment implements
        CachedBluetoothDevice.Callback, DialogInterface.OnClickListener, OnClickListener {
...
	  Button cancle = (Button) mRootView.findViewById(R.id.cancle);
			cancle.setOnClickListener(new View.OnClickListener() {
				@Override
	            public void onClick(View v) {
	            	 mCachedDevice.unpair();
//留意
                        LocalBluetoothPreferences.saveConnectDevice(getContext(), "");
                		com.android.settings.bluetooth.Utils.updateSearchIndex(getContext(),
                        BluetoothSettings.class.getName(), mCachedDevice.getName(),
                        getString(R.string.bluetooth_settings),
                        R.drawable.ic_settings_bluetooth, false);
						dismiss();
	            }
		});
...
    @Override
    public void onClick(DialogInterface dialog, int which) {
        switch (which) {
            case DialogInterface.BUTTON_POSITIVE:
                EditText deviceName = (EditText) mRootView.findViewById(R.id.name);
                mCachedDevice.setName(deviceName.getText().toString());
                break;
            case DialogInterface.BUTTON_NEUTRAL:
                mCachedDevice.unpair();
//留意
                LocalBluetoothPreferences.saveConnectDevice(getContext(), "");
                com.android.settings.bluetooth.Utils.updateSearchIndex(getContext(),
                        BluetoothSettings.class.getName(), mCachedDevice.getName(),
                        getString(R.string.bluetooth_settings),
                        R.drawable.ic_settings_bluetooth, false);
                break;
        }
    }
}

创建服务com.android.settings.bluetooth.BluetoothConnectService

public class BluetoothConnectService extends Service {
    private static final String TAG = "BluetoothConnectService";
    private Timer timer;
    private LocalBluetoothAdapter mLocalAdapter;
    private CachedBluetoothDeviceManager mDeviceManager;
    private LocalBluetoothProfileManager mProfileManager;
    @Override
    public void onCreate() {
        super.onCreate();
//        isOpenTimer(true);
        LocalBluetoothManager manager = Utils.getLocalBtManager(this);
        if (manager == null) {
            Log.e(TAG, "szjjyh Can't get LocalBluetoothManager: exiting");
            return;
        }
        mLocalAdapter = manager.getBluetoothAdapter();
        mDeviceManager = manager.getCachedDeviceManager();
        mProfileManager =manager.getProfileManager();
    }
    @Override
    public void onDestroy() {
        super.onDestroy();
        Log.d(TAG, "szjjyh onDestroy");
        if (timer != null) {
            timer.cancel();
            timer = null;
        }
    }
    @Nullable
    @Override
    public IBinder onBind(Intent intent) {
        return null;
    }
    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        Log.d(TAG, "szjjyh onStartCommand");
        isOpenTimer(true);
        return START_STICKY;
    }
    private void isOpenTimer(boolean isOpenWindow) {
        if (isOpenWindow) {
            if (timer == null) {
                timer = new Timer();
                timer.scheduleAtFixedRate(new RefreshTask(), 0, 1000 * 60 * 1);
            }
        } else {
            if (timer != null) {
                timer.cancel();
                timer = null;
            }
        }
    }
    private class RefreshTask extends TimerTask {
        @Override
        public void run() {
            autoConnectDevice();
        }
    }
    private void autoConnectDevice() {
        Set bondedDevices = mLocalAdapter.getBondedDevices();
        if (bondedDevices == null) {
            stopSelf();
            return;
        }
        Log.d(TAG, "szjjyh RefreshTask bondedDevices ="+bondedDevices.size());
        for (BluetoothDevice device : bondedDevices) {
            CachedBluetoothDevice cachedDevice = mDeviceManager.findDevice(device);
            if (LocalBluetoothPreferences.getConnectDevice(this, "").equals(device.getAddress())) {
                if (cachedDevice == null) {
                    cachedDevice = mDeviceManager.addDevice(mLocalAdapter, mProfileManager, device);
                }
                int bondState = cachedDevice.getBondState();
                if (bondState == BluetoothDevice.BOND_BONDED&&!cachedDevice.isConnected()) {
                    cachedDevice.connect(false);
                } else  {
                    stopSelf();
                }
            }
        }
    }
}

蓝牙自动连接完毕经测试长时间灭屏重启远距离断开等场景再次检测到之前连接设备时会自动连接

飘飘如叶 原创文章 3获赞 3访问量 2275 关注 私信 展开阅读全文
作者:飘飘如叶


免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

android系统蓝牙自动连接

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

android系统蓝牙自动连接

实现的主要功能(蓝牙配对成功如何与远程设备一直连接) 1.当蓝牙配对成功连接时,非主动断开会自动连接 2.当设备长时间锁屏会导致CachedBluetoothDevice自动清空,如果蓝牙断开就不会自动连接的处理 实现步骤 监控蓝牙断开连接
2022-06-06

Android 蓝牙连接 ESC/POS 热敏打印机打印实例(蓝牙连接篇)

公司的一个手机端的 CRM 项目最近要增加小票打印的功能,就是我们点外卖的时候经常会见到的那种小票。这里主要涉及到两大块的知识:蓝牙连接及数据传输ESC/POS 打印指令 蓝牙连接不用说了,太常见了,这篇主要介绍这部分的内容。但ESC/PO
2022-06-06

Android系统中的蓝牙连接程序编写实例教程

Bluetooth结构 1、JAVA层 frameworks/base/core/java/android/bluetooth/ 包含了bluetooth的JAVA类。 2、JNI层 frameworks/base/core/jni/and
2022-06-06

罗技蓝牙鼠标怎么连接Win10系统?

许多消费者喜欢使用蓝牙鼠标,因为它不受有线鼠标的限制,只要电脑支持蓝牙,就可以使用。可是有客户选购了罗技蓝牙鼠标以后,就不清楚如何连接了。接下来,小编将为各位提供一个罗技蓝牙鼠标与Win10系统连接的详细教程。实例教程如下所示:1、给鼠标驱
2023-07-14

蓝牙耳机怎么连接电脑win10系统

现在很多人都会使用蓝牙耳机来听音乐,不过部分用户也都不知道如何将蓝牙耳机与电脑连接起来,本文就和大家聊聊win10电脑连接蓝牙耳机的方法吧。1、先用鼠标右键点击电脑左下角的“开始”图标,在弹出的菜单选项里再点击“设置”来打开Windows设
2023-07-20

win7系统怎么连蓝牙鼠标win7联接蓝牙鼠标操作流程

蓝牙鼠标相比有线电视鼠标而言实际操作会更方便,大伙儿无需受电极连接线的限定,所以很多消费者都需要应用它,那样win7系统怎么连蓝牙鼠标呢?实际操作比较简单,你先点击任务栏图标右下方的蓝牙标志,随后挑选添加设备,以后在开启控制面板中选定蓝牙鼠
2023-07-10

【Android】Bluetooth(蓝牙)连接与数据传输(一)

目录 简介权限声明蓝牙扫描开始扫描取消扫描 获取蓝牙信息蓝牙配对配对取消配对 获取已配对蓝牙最终效果 简介 蓝牙技术是一种无线数据和语音通信开放的全球规范,它是基于低成本的近距离无线连接,为固定和移动设备
2023-08-30

win8系统蓝牙鼠标连接电脑操作图解

1、在任务栏托盘处点击显示隐藏图标(即下图中的箭头),然后在蓝牙图标上单击鼠标右键,选择“添加 Bluetooth 设备”;2、点击“添加设备”,如下图所示;3、选择添加的蓝牙鼠标,如下图所示
2022-06-04

Android 扫描附近的蓝牙设备并连接蓝牙音响的示例

写了一个可以扫描附近蓝牙设备的小Demo,可以查看蓝牙设备的设备名和Mac地址代码量不多,很容易看懂public class ScanDeviceActiv
2023-05-30

win8系统连接不了蓝牙鼠标的解决方法

这篇文章给大家分享的是有关win8系统连接不了蓝牙鼠标的解决方法的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。1、按win+r进入运行窗口,输入“services.msc”,回车即可。2、在窗口中,找到bluet
2023-06-28

Win7/Win8系统连接蓝牙耳机图文教程详解

本文将教您在Windows 7或javascript者Windows 8系统下如何连接蓝牙耳机 Windows 7系统: 点击系统右下角蓝牙图标,选择“添加设备” ,如图:选择要添加的蓝牙耳机 ,如图:系统会提示正在
2023-06-03

win10系统蓝牙驱动如何更新

这篇文章主要介绍“win10系统蓝牙驱动如何更新”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“win10系统蓝牙驱动如何更新”文章能帮助大家解决问题。蓝牙驱动更新的方法:方法一: 1、我们可以先下载
2023-06-30

怎么卸载win10系统下蓝牙驱动

今天小编给大家分享一下怎么卸载win10系统下蓝牙驱动的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。卸载win10系统下蓝牙
2023-07-01

Android怎么实现连接蓝牙扫码器无输入框

这篇文章主要介绍“Android怎么实现连接蓝牙扫码器无输入框”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“Android怎么实现连接蓝牙扫码器无输入框”文章能帮助大家解决问题。Android 的A
2023-06-29

Win10系统蓝牙鼠标总断连的解决方案

有的好朋友win10系统升级完发觉蓝牙鼠标总断连,令人很烦恼,这是怎么一回事呢?win10升级蓝牙鼠标会分手怎么办呢?不要着急今日笔者就对于此难题,为各位产生win10系统蓝牙鼠标总断连的解决方案,有兴趣的好朋友不必错过。Win10系统蓝牙
2023-07-13

Android 取消蓝牙配对框实现自动配对功能

我看了几个文章,主要是接受配对广播,然后设置pin,实现配对,但是网上的大部分手机是不可以的,Android.bluetoothdevice 下 action_pair_request ,没有定义这个,开始困扰了我一点时间,实现难度:是否能
2022-06-06

编程热搜

  • Android:VolumeShaper
    VolumeShaper(支持版本改一下,minsdkversion:26,android8.0(api26)进一步学习对声音的编辑,可以让音频的声音有变化的播放 VolumeShaper.Configuration的三个参数 durati
    Android:VolumeShaper
  • Android崩溃异常捕获方法
    开发中最让人头疼的是应用突然爆炸,然后跳回到桌面。而且我们常常不知道这种状况会何时出现,在应用调试阶段还好,还可以通过调试工具的日志查看错误出现在哪里。但平时使用的时候给你闹崩溃,那你就欲哭无泪了。 那么今天主要讲一下如何去捕捉系统出现的U
    Android崩溃异常捕获方法
  • android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
    系统的设置–>电池–>使用情况中,统计的能耗的使用情况也是以power_profile.xml的value作为基础参数的1、我的手机中power_profile.xml的内容: HTC t328w代码如下:
    android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
  • Android SQLite数据库基本操作方法
    程序的最主要的功能在于对数据进行操作,通过对数据进行操作来实现某个功能。而数据库就是很重要的一个方面的,Android中内置了小巧轻便,功能却很强的一个数据库–SQLite数据库。那么就来看一下在Android程序中怎么去操作SQLite数
    Android SQLite数据库基本操作方法
  • ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
    工作的时候为了方便直接打开编辑文件,一些常用的软件或者文件我们会放在桌面,但是在ubuntu20.04下直接直接拖拽文件到桌面根本没有效果,在进入桌面后发现软件列表中的软件只能收藏到面板,无法复制到桌面使用,不知道为什么会这样,似乎并不是很
    ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
  • android获取当前手机号示例程序
    代码如下: public String getLocalNumber() { TelephonyManager tManager =
    android获取当前手机号示例程序
  • Android音视频开发(三)TextureView
    简介 TextureView与SurfaceView类似,可用于显示视频或OpenGL场景。 与SurfaceView的区别 SurfaceView不能使用变换和缩放等操作,不能叠加(Overlay)两个SurfaceView。 Textu
    Android音视频开发(三)TextureView
  • android获取屏幕高度和宽度的实现方法
    本文实例讲述了android获取屏幕高度和宽度的实现方法。分享给大家供大家参考。具体分析如下: 我们需要获取Android手机或Pad的屏幕的物理尺寸,以便于界面的设计或是其他功能的实现。下面就介绍讲一讲如何获取屏幕的物理尺寸 下面的代码即
    android获取屏幕高度和宽度的实现方法
  • Android自定义popupwindow实例代码
    先来看看效果图:一、布局
  • Android第一次实验
    一、实验原理 1.1实验目标 编程实现用户名与密码的存储与调用。 1.2实验要求 设计用户登录界面、登录成功界面、用户注册界面,用户注册时,将其用户名、密码保存到SharedPreference中,登录时输入用户名、密码,读取SharedP
    Android第一次实验

目录