Loading core/java/android/widget/AbsSeekBar.java +9 −1 Original line number Diff line number Diff line Loading @@ -1005,7 +1005,15 @@ public abstract class AbsSeekBar extends ProgressBar { progress += scale * range + getMin(); 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 @@ -1005,7 +1005,15 @@ public abstract class AbsSeekBar extends ProgressBar { progress += scale * range + getMin(); 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