I\'m using a simple implementation of RecyclerView taken from the Android website using a StaggeredGridLayoutManager and I keep getting this error
RecyclerView
StaggeredGridLayoutManager
It took me two days but could not get around this, in the end, I had to disable the item prefetch.
When setting the layout manager you can simply call
mGridLayoutManager.setItemPrefetchEnabled(false);
It made the error go away for me. Hope it will be useful for someone.