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

android, seekbar

Solution

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

Problem

I have an app where I want to set the progress of a specific SeekBar based upon a value retrieved from a web service. However when I use SetProgress(int) only the "seeker" of the SeekBar gets set. The bar does not get "filled" out as expected. This is what it looks like : Any ideas on how to fix this issue ?

Original source

Related problems