AndroidSwipeLayout icon indicating copy to clipboard operation
AndroidSwipeLayout copied to clipboard

position of the swipe layout changes while scrolling

Open nithinlal191 opened this issue 8 years ago • 5 comments

Now I am getting issue in listview swipe option. I am using BaseSwipeAdapter

While opening an item by swipe, then I scroll down I can see the other views also open at a particular intervel. I set the mode of the adapter to

Attributes.Mode.Single

But the same issue occurs

nithinlal191 avatar Nov 29 '16 16:11 nithinlal191

same issue, any solution @nithinlal191 ?

aitbaali avatar Jan 21 '17 13:01 aitbaali

Same issue for RecylceSwipeAdapter @nithinlal191

BJPVieira avatar May 19 '17 13:05 BJPVieira

same issue, any solution @nithinlal191 ?

NewHuLe avatar Jun 01 '17 11:06 NewHuLe

I sort my glitch this way into onBindViewHolder(...) viewHolder.swipeLayout.open(SwipeLayout.DragEdge.Left); viewHolder.swipeLayout.close(); viewHolder.swipeLayout.setShowMode(SwipeLayout.ShowMode.LayDown); viewHolder.swipeLayout.setLeftSwipeEnabled(false);

BJPVieira avatar Jun 01 '17 11:06 BJPVieira

I had that issue, I was using recycler view. onverriding getItemViewType() and getItemId() worked for me.

ideepdave avatar May 23 '19 07:05 ideepdave