You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-> 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).
The text was updated successfully, but these errors were encountered:
-> 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).
The text was updated successfully, but these errors were encountered: