I\'m trying to make a SeekBar move more smoothly than just jumping straight to the position. I\'m doing this as I\'ve got a SeekBar with 3 options for a slider-type implementati
This works fine for me, quite simple and straight forward.
if (currentPosition > 0) { ObjectAnimator animation = ObjectAnimator.ofInt(seekBar, "progress", currentPosition); animation.setDuration(400); animation.setInterpolator(new DecelerateInterpolator()); animation.start(); }