RecyclerView onClick notifyItemRemoved doesn't trigger onBindView
问题 I use notifyItemRemoved() method I want to change other remaining item , but the method doesn't trigger onBindView() method. How can I do that, except using the notifyDataSetChanged() . I want to have the animation that comes with notifyItemRemoved() method 回答1: If you are trying to remove an item from RecyclerView Adapter and want to show animation all over your list in RecyclerView . after using notifyItemRemoved(position) use notifyItemRangeChanged(position, getItemCount());