Update progress bar on fast forward/rewind
This commit is contained in:
parent
63afacc067
commit
1975973ff2
|
@ -1129,6 +1129,7 @@ public abstract class BasePlayer implements
|
|||
Log.d(TAG, "onFastRewind() called");
|
||||
}
|
||||
seekBy(-getSeekDuration());
|
||||
triggerProgressUpdate();
|
||||
}
|
||||
|
||||
public void onFastForward() {
|
||||
|
@ -1136,6 +1137,7 @@ public abstract class BasePlayer implements
|
|||
Log.d(TAG, "onFastForward() called");
|
||||
}
|
||||
seekBy(getSeekDuration());
|
||||
triggerProgressUpdate();
|
||||
}
|
||||
|
||||
private int getSeekDuration() {
|
||||
|
|
Loading…
Reference in New Issue