Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android 檢測是否連接藍牙耳機

Android 檢測是否連接藍牙耳機

編輯:關於Android編程

private void handleHeadsetStateChange()
    {
    	Intent intent = new Intent(Intent.ACTION_HEADSET_PLUG);
    	if(BluetoothProfile.STATE_CONNECTED == adapter.getProfileConnectionState(BluetoothProfile.HEADSET))
    	{
    		intent.putExtra("state", 1);
    		intent.putExtra("microphone", 1);
				mContext.sendBroadcast(intent);
    	}
    	else if(BluetoothProfile.STATE_DISCONNECTED == adapter.getProfileConnectionState(BluetoothProfile.HEADSET))
    	{
    		intent.putExtra("state", -1);
				mContext.sendBroadcast(intent);
    	}
    }

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved