Loading core/java/android/widget/AbsSeekBar.java +9 −1 Original line number Diff line number Diff line Loading @@ -866,7 +866,15 @@ public abstract class AbsSeekBar extends ProgressBar { progress += scale * range; setHotspot(x, y); setProgressInternal(Math.round(progress), true, false); setProgressInternal(updateTouchProgress(getProgress(), Math.round(progress)), true, false); } /** * @hide */ protected int updateTouchProgress(int lastProgress, int newProgress) { return newProgress; } /** Loading Loading
core/java/android/widget/AbsSeekBar.java +9 −1 Original line number Diff line number Diff line Loading @@ -866,7 +866,15 @@ public abstract class AbsSeekBar extends ProgressBar { progress += scale * range; setHotspot(x, y); setProgressInternal(Math.round(progress), true, false); setProgressInternal(updateTouchProgress(getProgress(), Math.round(progress)), true, false); } /** * @hide */ protected int updateTouchProgress(int lastProgress, int newProgress) { return newProgress; } /** Loading