I’m developing an application which will use a Progress Bar.
The problem is that I don’t want to use the method setProgressBar(), just because I want to regulate the loading amount manually.
In fact when I use, for instance, setProgress(20), the bar will keep updating by 20 every time.
I mean, I need to call a kind of “set” method which take an input as parameter and set the fixed amount on the progress bar without change it time after time.
Is it possible?
As the documentation states:
Meaning you can set the progress of the progressbar to the fixed value you want. The only thing you need to do is call it on the right time.