CircleProgress icon indicating copy to clipboard operation
CircleProgress copied to clipboard

Arc Progress Amination issue

Open RahilRK opened this issue 5 years ago • 0 comments

-> Sir I want to slow down animation of ArcProgress and I am using this code:

ObjectAnimator animation = ObjectAnimator.ofInt(arc_progress, "progress", 0, 60); animation.setDuration(55 * 25);//25 for a fast but not to fast animation animation.setInterpolator(new DecelerateInterpolator()); animation.start();

and I changed (55 * 10), but it is not slowing down.

-> And one more issue, when i restart my app it is not showing any animation (I want to restart my animation on On Create).

RahilRK avatar Jun 19 '19 06:06 RahilRK