I want the SeekBar progress to change whenever I click a button. Using setProgress() works only for initial value. It throws an error if I use it
SeekBar
setProgress()
As of support library 28.0.0 anyway, I can set the progress simply like this
mySeekBar.setProgress(17);
and the position gets updated without a problem.