SwipeLayout
SwipeLayout copied to clipboard
A library what allows you to execute a swipe for the android platform
How can I handle click events? It seems onInterceptTouchEvents is `eating` the clicks How can I still handle clicks?
If our recyclerview list Item background is transparent then our left or right view is visible in background.
Strange behavior Item not dragging properly I've enabled both left and right swipe But when item is swiped left,right swipe becomes too hard (After 4-5 attempts i can swipe right...
I've set both swipeLayout.setEnabledSwipe(false) and setEnabled(false) but I'm still able to swipe on item.
I drag an item and I want the other open items to be closed. Is there any configuration?
``` public boolean onInterceptTouchEvent(MotionEvent event) { if ( **disallowIntercept** && isViewGroup(draggedView)) { final View neededScrollView = getNeededTouchView(event, (ViewGroup) draggedView); final Point touchPoint = new Point((int) event.getX(), (int) event.getY()); if (neededScrollView...
Normal recyclerview with SwipeLayout as the item Single item menu open Another item menu open I want to close the previous item once the new item is open... can this...
I have some conditions where I just want specific users to get the swipe functionality but somehow it is enabling swipe for everyone ``` (binding as? ItemRoomMemberBinding)?.apply { if (!isSwipeEnabled...
Is there a way to let the swipe left icon to grow with the height of the list view row. Some rows has a lot of text in some fields...