traex / RippleEffect

Implementation of Ripple effect from Material Design for Android API 9+
MIT License
4.92k stars 1.08k forks source link

onTouchListener problem (does not override performClick) #133

Open mr-sarsarabi opened 6 years ago

mr-sarsarabi commented 6 years ago

I have a View above the rippleView and I don't want the touch event to affect the rippleView while the other View is Visible.(onClickListner does not work well here) usually by setting onTouchListner for the View above and returning false, the touch event doesn't go any deeper and stops. rippleView does not follow this pattern and grabs the touch event whether it's above or below. and stops the touch event. O_O