android-ripple-background icon indicating copy to clipboard operation
android-ripple-background copied to clipboard

After RippleBackground.stopRippleAnimation(), the rippleView still visible

Open 565407548 opened this issue 7 years ago • 3 comments

In some phone, after RippleBackground.stopRippleAnimation(), the rippleView still visible.

565407548 avatar Apr 25 '18 05:04 565407548

I'm experiencing this issue on Galaxy S8+ with Android 8.0 and on OnePlus 5t 8.0/8.1

rostopira avatar Jun 28 '18 07:06 rostopira

I had same problem with Oreo. I temporary fixed it like this: rippleBackground.startRippleAnimation(); rippleBackground.stopRippleAnimation(); But it's not perfect becuase it has a delay.

LordArma avatar Aug 08 '18 21:08 LordArma

@LordArma I've solved it by changing visibility

rippleBackground.startRippleAnimation();
rippleBackground.setVisibility(View.GONE);

rostopira avatar Aug 09 '18 09:08 rostopira