Restore handling SPACE as play-pause only in fullscreen

When not in fullscreen SPACE should be not handled by the player, and hence result in a scroll down
This commit is contained in:
Stypox 2022-03-03 10:14:58 +01:00 committed by GitHub
parent 2934841152
commit e588abd4e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 3 deletions

View File

@ -3752,9 +3752,12 @@ public final class Player implements
default:
break;
case KeyEvent.KEYCODE_SPACE:
playPause();
if (isPlaying()) {
hideControls(0, 0);
if (isFullscreen) {
playPause();
if (isPlaying()) {
hideControls(0, 0);
}
return true;
}
break;
case KeyEvent.KEYCODE_BACK:

View File

@ -88,6 +88,7 @@ public class PlayerMediaSession implements MediaSessionCallback {
@Override
public void play() {
player.play();
// hide the player controls even if the play command came from the media session
player.hideControls(0, 0);
}