RippleDrawable icon indicating copy to clipboard operation
RippleDrawable copied to clipboard

enter ripple animation play twice.

Open lucca2011 opened this issue 9 years ago • 0 comments
trafficstars

Long press and release finger before ripple animation ended, the enter animation will play twice. In Ripple.java method enter(), called animation start twice here. Comment the three line may fix it. // radius.start(); // cX.start(); // cY.start();

    AnimatorsCompat.startWithAutoCancel(radius);
    AnimatorsCompat.startWithAutoCancel(cX);
    AnimatorsCompat.startWithAutoCancel(cY);

lucca2011 avatar Apr 28 '16 07:04 lucca2011