Removed all animations to be consistent with the current behavior

This commit is contained in:
litetex 2021-12-14 20:44:39 +01:00
parent 65bb1dcdbf
commit c25e523df6
2 changed files with 0 additions and 18 deletions

View File

@ -591,30 +591,14 @@ public final class Player implements
.seekSeconds((int) (retrieveSeekDurationFromPreferences(this) / 1000.0f)) .seekSeconds((int) (retrieveSeekDurationFromPreferences(this) / 1000.0f))
.performListener(new PlayerFastSeekOverlay.PerformListener() { .performListener(new PlayerFastSeekOverlay.PerformListener() {
@Override
public void onDoubleTabStart() {
// TODO
}
@Override @Override
public void onDoubleTab() { public void onDoubleTab() {
animate(binding.fastSeekOverlay, true, SEEK_OVERLAY_DURATION); animate(binding.fastSeekOverlay, true, SEEK_OVERLAY_DURATION);
animate(binding.playbackControlsShadow,
!simpleExoPlayer.getPlayWhenReady(), SEEK_OVERLAY_DURATION);
animate(binding.playerTopShadow, false, SEEK_OVERLAY_DURATION);
animate(binding.playerBottomShadow, false, SEEK_OVERLAY_DURATION);
animate(binding.playbackControlRoot, false, SEEK_OVERLAY_DURATION);
hideSystemUIIfNeeded();
} }
@Override @Override
public void onDoubleTabEnd() { public void onDoubleTabEnd() {
animate(binding.fastSeekOverlay, false, SEEK_OVERLAY_DURATION); animate(binding.fastSeekOverlay, false, SEEK_OVERLAY_DURATION);
if (!simpleExoPlayer.getPlayWhenReady()) {
showControls(SEEK_OVERLAY_DURATION);
} else {
showHideShadow(false, SEEK_OVERLAY_DURATION);
}
} }
@Override @Override

View File

@ -57,7 +57,6 @@ class PlayerFastSeekOverlay(context: Context, attrs: AttributeSet?) :
Log.d(TAG, "onDoubleTapStarted called with portion = [$portion]") Log.d(TAG, "onDoubleTapStarted called with portion = [$portion]")
initTap = false initTap = false
performListener?.onDoubleTabStart()
secondsView.stop() secondsView.stop()
} }
@ -122,7 +121,6 @@ class PlayerFastSeekOverlay(context: Context, attrs: AttributeSet?) :
} }
interface PerformListener { interface PerformListener {
fun onDoubleTabStart() {}
fun onDoubleTab() fun onDoubleTab()
fun onDoubleTabEnd() fun onDoubleTabEnd()
fun shouldFastForward(portion: DisplayPortion): Boolean? fun shouldFastForward(portion: DisplayPortion): Boolean?