1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-10-04 10:22:23 +00:00

Merge pull request #7341 from ktprograms/external-play-hide-controls

Fix player controls not hiding if resumed from media button
This commit is contained in:
Stypox
2022-03-15 13:43:35 +01:00
committed by GitHub
2 changed files with 6 additions and 0 deletions

View File

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

View File

@@ -88,6 +88,8 @@ 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);
}
@Override