SeekBar not setting actual progress. SetProgress() not working on early Android Versions [duplicate]

大兔子大兔子 提交于 2019-12-04 08:18:27

Try to set max value first and then set the progress.

jfritz42

Turns out this is a bug in Android. See also:

http://code.google.com/p/android/issues/detail?id=12945

Android SeekBar doesn't refresh after dynamically setting max value with setMax

android progressBar does not update progress view/drawable

A workaround is to do something like setMax(0) followed by setMax(max) and then setProgress().

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!