CircleProgress
CircleProgress copied to clipboard
how to update progress bar value programmatically
Quite simple.
arcProgress = (ArcProgress) findViewById(R.id.arch1);
arcProgress.setProgress(80);
val anim = ObjectAnimator.ofInt(arc_progress, "progress", 0, 80) anim.interpolator = DecelerateInterpolator() anim.duration = 500 anim.start()