android notifyItemRangeInserted disable autoscroll
问题 I'm using RecyclerView as the base for my data list. i've implemented custom RecyclerView.Adapter which is based on ArraList. on fetching data from the internet the code that i'm running is: public void addItems(List<Item> items){ final int size = data.size(); data.addAll(items); notifyItemRangeInserted(size, items.size()); } Problem is that for after running this code i'm getting an autoscroll to the bottom of the list (last element is now visible) Is there a way to disable this? couldn't