fix(android) set stream type hardware buttons should control

Ref:
https://developer.android.com/reference/android/app/Activity#setVolumeControlStream(int)
This commit is contained in:
Saúl Ibarra Corretgé 2020-11-26 15:50:05 +01:00 committed by Saúl Ibarra Corretgé
parent 3725f698e4
commit baa39896f1
1 changed files with 10 additions and 0 deletions

View File

@ -16,6 +16,7 @@
package org.jitsi.meet.sdk;
import android.app.Activity;
import android.content.Context;
import android.media.AudioManager;
import android.os.Build;
@ -276,6 +277,15 @@ class AudioModeModule extends ReactContextBaseJavaModule {
return;
}
Activity currentActivity = getCurrentActivity();
if (currentActivity != null) {
if (mode == DEFAULT) {
currentActivity.setVolumeControlStream(AudioManager.USE_DEFAULT_STREAM_TYPE);
} else {
currentActivity.setVolumeControlStream(AudioManager.STREAM_VOICE_CALL);
}
}
runInAudioThread(new Runnable() {
@Override
public void run() {