xabaras/RecyclerViewSwipeDecorator

swipe background don't disappear after on swiped called.

MrAndroi opened this issue · 2 comments

swipe background don't disappear after on swiped called.... when i finish the swiping i want the background to go how i can do this?

meafs commented

@MrAndroi in your onSwiped method use this:

int position = viewHolder.getAdapterPosition();

if(direction == ItemTouchHelper.LEFT)
    {
        adapter.notifyItemChanged(position);  // Add this line

      }

Your background will be back.

@meafs thanks for answering