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

Android 检测是否连接蓝牙耳机

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

 

前言
         欢迎大家我分享和推荐好用的代码段~~
声明
         欢迎转载,但请保留文章原始出处:
         CSDN:
http://www.csdn.net
         雨季o莫忧离:http://blog.csdn.net/luckkof

正文

  

    private void handleHeadsetStateChange()
    {
     if(BluetoothProfile.STATE_CONNECTED == adapter.getProfileConnectionState(BluetoothProfile.HEADSET))
     {
      Intent intent = new Intent(Intent.ACTION_HEADSET_PLUG);
    sendBroadcast(intent);
     }