I\'m trying to implement a smooth animation for my ProgressBar, but when I increase the time (30 seconds), the animation is no longer smooth.
Example wi
You can not use the ofFloat because the ProgressBar's progress attribute doesn't accept float values, only integer ones. That is why your ProgressBar stopped progressing after going with that solution.
As the others have said it, the correct way to do what you want is to set android:max to some big integer.
Sorry for reviving the thread but I feel like this had to be said.