欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Android 蓝牙电话联系人同步之蓝牙状态检测

程序员文章站 2022-06-14 23:03:14
...

最近做的一个语音项目,要求车机端可以利用蓝牙,语音打电话给手机通讯录里的联系人。

实现这个功能需要将手机端的通讯录上传到语音的远程服务器端,并且SDK要求必须把蓝牙的状态实时上报上去。

上报通讯录其实还是很简单的,只要监听车机端的联系人provider的变化就可以进行读取操作和上报。

mContactObserver = new ContactObserver(new Handler());
Uri uri = ContactsContract.Contacts.CONTENT_URI;
mResolver.registerContentObserver(uri, true, mContactObserver);

难点其实在于如何上报蓝牙的连接状态,这里和电话相关的两个蓝牙协议分别是:

  • Headset: 蓝牙打电话
  • Pbap:联系人同步

所以如果能监听蓝牙的这两个连接状态的变化就可以上报了,但是很不幸的是这两个状态在Android sdk里没有提供相应的显示的广播,这两个广播属于隐藏。如果要想监听,就必须使用“反射”大法了。

翻看源码,先找到这两个广播的定义之处,然后定义它们

 private final static String REFLECTION_HEADSETCLIENT_CLASS =
            "android.bluetooth.BluetoothHeadsetClient";

private final static String REFLECTION_PBAP_CLIENT_CLASS =
            "android.bluetooth.BluetoothPbapClient";

然后就是反射它们,这里我使用了一个反射工具类,自己写的

public String getAttributeValueOfStringType(String classPath, String attribute) {
        String value = "";
        try {
            Class clazz = Class.forName(classPath);
            Field field= clazz.getField(attribute);
            value = (String)field.get(clazz);
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        } catch (NoSuchFieldException e) {
            e.printStackTrace();
        } catch (IllegalAccessException e) {
            e.printStackTrace();
        }
        return value;
    }

最后就是注册监听这两个蓝牙广播

IntentFilter intentFilter = new IntentFilter();
intentFilter.addAction(ReflectionUtil.getInstance().getAttributeValueOfStringType(
                REFLECTION_HEADSETCLIENT_CLASS,
                REFLECTION_CONSTANT_CONNECTION_CHANGED));
intentFilter.addAction(ReflectionUtil.getInstance().getAttributeValueOfStringType(
                REFLECTION_PBAP_CLIENT_CLASS,
                REFLECTION_CONSTANT_CONNECTION_CHANGED));
mBluetoothReceiver = new BluetoothReceiver();
if (!isRegisterBT) {
            XXApplication.getContext().registerReceiver(mBluetoothReceiver, intentFilter);
            isRegisterBT = true;
}

 

 

相关标签: android