I am using a ProgressBar in my application which I update in onProgressUpdate of an AsyncTask. So far so good.
AsyncTask
What I want to do is to animate the prog
Similar with Kotlin on the UI thread
activity?.runOnUiThread { ObjectAnimator.ofInt(binding.progressAudio, "progress", currentPosition) .setDuration(100) .start(); }