RecyclerView settle item with Decelerate Interpolator once scroll finishes
问题 I want to animate the RecyclerView scrolling. I don't want to animate adding or removal of items but rather animate items which are on screen, i.e visible items. What I want is, item settle down smoothly when scrolling is about to finish. I am not sure what approach should I take or how this can be done. I have tried following till now Using RecyclerView.OnScrollListener , when I get onScrolled callback, I find visible items & animate them upside or downside based on scroll direction. But