AviranAbady / CookieBar2

Android library for displaying text messages, notifications and alerts at the top or bottom of the screen. A great alternative for toast and snackbar alerts.
Apache License 2.0
668 stars 74 forks source link

SwipeToDismiss not working if custom view has click listener set #36

Open ashub7 opened 2 months ago

ashub7 commented 2 months ago

SwipeToDismiss not working if custom view's Root view has click listener set .. Is there a way we can have both ?

AviranAbady commented 2 months ago

@ashub7 OnClickListener will consume the event and will not propagate the event to the parent view. You can use View.OnTouchListener which will allow you hande the touch/click without consuming the event.