I have a ListView that uses a custom adaper (that extends BaseAdapter). How do I add the swipe to delete gesture?
I want use the same functionality the gmail application uses.
The easiest way to do this is to move your ListView over to a RecyclerView and use a GridLayoutManager with a single column.  It will look the same, but allows you to swipe to dismiss using the ItemTouchHelper.
     recyclerView = (RecyclerView) view.findViewById(R.id.recyclerView);
     recyclerView.setLayoutManager(new GridLayoutManager(getActivity(), 1));
     recyclerView.setAdapter(adapter);
    ItemTouchHelper itemTouchHelper = new ItemTouchHelper(new ItemTouchHelper.SimpleCallback(0, ItemTouchHelper.LEFT | ItemTouchHelper.RIGHT) {
        @Override
        public void onSwiped(RecyclerView.ViewHolder viewHolder, int swipeDir) {
            // Remove item from backing list here
            adapter.notifyDataSetChanged();
        }
    });
    itemTouchHelper.attachToRecyclerView(recyclerView);
                        You can use the lib ::
SwipeMenuListView
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With