When in Fullscreen playback mode, toggle play/pause with the hardware Space button.

This commit is contained in:
Mikhail Barashkov 2021-01-01 23:23:59 +02:00
parent 16c44f3a30
commit 907106156f
2 changed files with 7 additions and 0 deletions

View file

@ -505,6 +505,11 @@ public class VideoPlayerImpl extends VideoPlayer
switch (keyCode) {
default:
break;
case KeyEvent.KEYCODE_SPACE:
if (isFullscreen) {
onPlayPause();
}
break;
case KeyEvent.KEYCODE_BACK:
if (DeviceUtils.isTv(service) && isControlsVisible()) {
hideControls(0, 0);