Skip to content

Commit 26312a2

Browse files
authored
consider wired headphones #12
1 parent f484f95 commit 26312a2

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

Android/src/com/davikingcode/DetectHeadset/DetectHeadset.java

+13-7
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,24 @@ public DetectHeadset(Context context) {
1111
myAudioManager = (AudioManager) context.getSystemService(Context.AUDIO_SERVICE);
1212
}
1313

14-
public boolean _Detect() {
14+
public boolean _Detect()
15+
{
1516
//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+
{
1719
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)
2125
return true;
2226
}
23-
}else {
27+
}
28+
else
29+
{
2430
//This should work as expected for the older api's
25-
if(myAudioManager.isWiredHeadsetOn() || myAudioManager.isBluetoothA2dpOn())
31+
if (myAudioManager.isWiredHeadsetOn() || myAudioManager.isBluetoothA2dpOn())
2632
return true;
2733
}
2834
return false;

0 commit comments

Comments
 (0)