kopia lustrzana https://github.com/TeamNewPipe/NewPipe
Fixed progress bar not completing after video end
rodzic
c1f7b2653c
commit
22847c6c92
|
@ -1596,10 +1596,7 @@ public final class Player implements
|
|||
setVideoDurationToControls(duration);
|
||||
}
|
||||
if (currentState != STATE_PAUSED) {
|
||||
if (currentState != STATE_PAUSED_SEEK) {
|
||||
binding.playbackSeekBar.setProgress(currentProgress);
|
||||
}
|
||||
binding.playbackCurrentTime.setText(getTimeString(currentProgress));
|
||||
updatePlayBackElementsCurrentDuration(currentProgress);
|
||||
}
|
||||
if (simpleExoPlayer.isLoading() || bufferPercent > 90) {
|
||||
binding.playbackSeekBar.setSecondaryProgress(
|
||||
|
@ -2253,6 +2250,9 @@ public final class Player implements
|
|||
stopProgressLoop();
|
||||
}
|
||||
|
||||
// When a (short) video ends the elements have to display the correct values
|
||||
updatePlayBackElementsCurrentDuration(binding.playbackSeekBar.getMax());
|
||||
|
||||
showControls(500);
|
||||
animate(binding.currentDisplaySeek, false, 200, AnimationType.SCALE_AND_ALPHA);
|
||||
binding.loadingPanel.setVisibility(View.GONE);
|
||||
|
@ -2595,6 +2595,18 @@ public final class Player implements
|
|||
//////////////////////////////////////////////////////////////////////////*/
|
||||
//region Playback position and seek
|
||||
|
||||
/**
|
||||
* Sets the current duration into the corresponding elements.
|
||||
* @param currentProgress
|
||||
*/
|
||||
private void updatePlayBackElementsCurrentDuration(final int currentProgress) {
|
||||
// Don't set seekbar progress while user is seeking
|
||||
if (currentState != STATE_PAUSED_SEEK) {
|
||||
binding.playbackSeekBar.setProgress(currentProgress);
|
||||
}
|
||||
binding.playbackCurrentTime.setText(getTimeString(currentProgress));
|
||||
}
|
||||
|
||||
@Override // own playback listener (this is a getter)
|
||||
public boolean isApproachingPlaybackEdge(final long timeToEndMillis) {
|
||||
// If live, then not near playback edge
|
||||
|
|
Ładowanie…
Reference in New Issue