AndroidSwipeLayout icon indicating copy to clipboard operation
AndroidSwipeLayout copied to clipboard

The Most Powerful Swipe Layout!

Results 108 AndroidSwipeLayout issues
Sort by recently updated
recently updated
newest added

instead of creating a button, is there a way to delete an item just by swiping?

Fatal Exception: java.util.ConcurrentModificationException at java.util.ArrayList$Itr.next(ArrayList.java:860) at com.daimajia.swipe.SwipeLayout.dispatchSwipeEvent(SwipeLayout.java:518) at com.daimajia.swipe.SwipeLayout.dispatchSwipeEvent(SwipeLayout.java:497) at com.daimajia.swipe.SwipeLayout$1.onViewPositionChanged(SwipeLayout.java:387) at androidx.customview.widget.ViewDragHelper.continueSettling(ViewDragHelper.java:750) at com.daimajia.swipe.SwipeLayout.computeScroll(SwipeLayout.java:635) at android.view.View.updateDisplayListIfDirty(View.java:22754) at android.view.ViewGroup.recreateChildDisplayList(ViewGroup.java:5320) at android.view.ViewGroup.dispatchGetDisplayList(ViewGroup.java:5292) at android.view.View.updateDisplayListIfDirty(View.java:22731) at android.view.ViewGroup.recreateChildDisplayList(ViewGroup.java:5320) at android.view.ViewGroup.dispatchGetDisplayList(ViewGroup.java:5292) at android.view.View.updateDisplayListIfDirty(View.java:22731)

1) Added support for PagedListAdapter. 2) Migrated to AndroidX. 2) Added example for PagedListAdapter.

When I am swiping the item,It is giving me some space sometimes right side.i.e., item is overlapping under main item.

``` if (!(adapter instanceof SwipeItemMangerInterface)) throw new IllegalArgumentException("adapter should implement the SwipeAdapterInterface"); ``` it should be ``` if (!(adapter instanceof SwipeAdapterInterface)) throw new IllegalArgumentException("adapter should implement the SwipeAdapterInterface"); ```

hi, I implemented both direction ( - right & left ) like that ` viewHolder.swipeLayout.setShowMode(SwipeLayout.ShowMode.LayDown); viewHolder.swipeLayout.addDrag(SwipeLayout.DragEdge.Left, viewHolder.swipeLayout.findViewById(R.id.left_view)); viewHolder.swipeLayout.addDrag(SwipeLayout.DragEdge.Right, viewHolder.swipeLayout.findViewById(R.id.right_view)); ` and my xml is like this ` ` Everytime that...

Check this video https://drive.google.com/file/d/1ix1Yxdh-EcUAVQ0rhrMNdcLU6BBgSTb1/view Any solution for this? Also, I want to implement a favorite option I implement it and when I add one item in the favorite list (favorite...

I've noticed some strange issues with Swiping to Delete elements. To make this easy, I've used the sample to show case my issue. If I swipe to delete an element,...