I\'m using basic RecyclerView with GridLayoutManager. I observed that nor smoothScrollToPosition nor scrollToPosition works properly.
a) when using smoothScrol
smoothScrol
In My case,
`mRecyclerView.scrollToPosition(10);`
also did not work. But
`mRecyclerView.smoothScrollToPosition(10);`
works fine for me...