高通平台 android7.1 蓝牙的可见性设置

1、情景

本机设备只打开蓝牙开关,但不停留在设置里面蓝牙页面时,其他设备扫描不到本机设备。

2、Android7.1中,默认的行为是,只有在设置里面的蓝牙页面,才会开启蓝牙的可见性;如果只是打开下拉栏的蓝牙快捷开关,是不会开启蓝牙可见性的。

3、需求:

(1)打开蓝牙时,直接打开蓝牙可见性

(2)不停留在设置里面蓝牙页面时,要扫描到本机设备

4、需求一的解决方案:

打开蓝牙时,直接打开蓝牙可见性。如下:

路径:****/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/AdapterProperties.java

复制代码
void onBluetoothReady() {
        Log.d(TAG, "ScanMode =  " + mScanMode );
        Log.d(TAG, "State =  " + getState() );

        // When BT is being turned on, all adapter properties will be sent in 1
        // callback. At this stage, set the scan mode.
        synchronized (mObject) {
            if (getState() == BluetoothAdapter.STATE_TURNING_ON &&
                    mScanMode == BluetoothAdapter.SCAN_MODE_NONE) {
                    /* mDiscoverableTimeout is part of the
                       adapterPropertyChangedCallback received before
                       onBluetoothReady */
                    if (mDiscoverableTimeout != 0)
					  //setScanMode(AbstractionLayer.BT_SCAN_MODE_CONNECTABLE);
                      setScanMode(AbstractionLayer.BT_SCAN_MODE_CONNECTABLE_DISCOVERABLE);
                    else /* if timeout == never (0) at startup */
                      setScanMode(AbstractionLayer.BT_SCAN_MODE_CONNECTABLE_DISCOVERABLE);
                    /* though not always required, this keeps NV up-to date on first-boot after flash */
                    setDiscoverableTimeout(mDiscoverableTimeout);
            }
        }
    }

如上图: 将 setScanMode(AbstractionLayer.BT_SCAN_MODE_CONNECTABLE); 改为

setScanMode(AbstractionLayer.BT_SCAN_MODE_CONNECTABLE_DISCOVERABLE);即可。

5、需求二的解决方案,如下:

路径:******/packages/apps/Settings/src/com/android/settings/bluetooth/BluetoothSettings.java

复制代码
@Override
    public void onPause() {
        super.onPause();
        if (mBluetoothEnabler != null) {
            mBluetoothEnabler.pause();
        }

        // Make the device only visible to connected devices.
        //mLocalAdapter.setScanMode(BluetoothAdapter.SCAN_MODE_CONNECTABLE);

        if (isUiRestricted()) {
            return;
        }

        getActivity().unregisterReceiver(mReceiver);
    }

如上图,在onPause()方法中将mLocalAdapter.setScanMode(BluetoothAdapter.SCAN_MODE_CONNECTABLE);注释掉即可。

相关推荐
董三毛1 小时前
Kotlin Coroutine 底层实现原理
android
L108701 小时前
AutoJsPro GoogleMaterial3 M3组件使用示例
android
枣把儿3 小时前
「zotepad」用Gemini3pro写出一个高效写作和发文的记事本应用
android·前端·nuxt.js
明川3 小时前
Android Gradle 学习 - 生命周期和Task
android·前端·gradle
技术摆渡人3 小时前
Android 系统技术探索(5)指尖的舞蹈(Input 系统与 ANR)
android
来碗疙瘩汤3 小时前
uniapp动态读取版本号
android
用户41659673693554 小时前
存量项目如何拥抱 KMP?从环境搭建到组件化集成的保姆级指南
android
技术摆渡人4 小时前
Android 系统技术探索(3)光影魔术(SurfaceFlinger & 图形栈)。
android
某空m5 小时前
【Android】浅析DataBinding
android·开发语言
sky北城6 小时前
You are not able to choose some of the languages, because locales for them a
android