File tree 1 file changed +13
-7
lines changed
Android/src/com/davikingcode/DetectHeadset
1 file changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -11,18 +11,24 @@ public DetectHeadset(Context context) {
11
11
myAudioManager = (AudioManager ) context .getSystemService (Context .AUDIO_SERVICE );
12
12
}
13
13
14
- public boolean _Detect () {
14
+ public boolean _Detect ()
15
+ {
15
16
//Added validation for newer api's above 26.
16
- if (android .os .Build .VERSION .SDK_INT >= android .os .Build .VERSION_CODES .M ) {
17
+ if (android .os .Build .VERSION .SDK_INT >= android .os .Build .VERSION_CODES .M )
18
+ {
17
19
AudioDeviceInfo [] audioDeviceInfos = myAudioManager .getDevices (AudioManager .GET_DEVICES_INPUTS );
18
- for (int i =0 ;i <audioDeviceInfos .length ; i ++){
19
- if (audioDeviceInfos [i ].getType () == AudioDeviceInfo .TYPE_BLUETOOTH_SCO ||
20
- audioDeviceInfos [i ].getType () == AudioDeviceInfo .TYPE_WIRED_HEADSET )
20
+ for (int i =0 ;i <audioDeviceInfos .length ; i ++)
21
+ {
22
+ if (audioDeviceInfos [i ].getType () == AudioDeviceInfo .TYPE_BLUETOOTH_SCO ||
23
+ audioDeviceInfos [i ].getType () == AudioDeviceInfo .TYPE_WIRED_HEADSET ||
24
+ audioDeviceInfos [i ].getType () == AudioDeviceInfo .TYPE_WIRED_HEADPHONES )
21
25
return true ;
22
26
}
23
- }else {
27
+ }
28
+ else
29
+ {
24
30
//This should work as expected for the older api's
25
- if (myAudioManager .isWiredHeadsetOn () || myAudioManager .isBluetoothA2dpOn ())
31
+ if (myAudioManager .isWiredHeadsetOn () || myAudioManager .isBluetoothA2dpOn ())
26
32
return true ;
27
33
}
28
34
return false ;
You can’t perform that action at this time.
0 commit comments