Get current position on recyclerview that user scrolled on Android

yourRecyclerView.getLayoutManager().findFirstVisibleItemPosition();

you probably need to cast your LayoutManager to a LinearLayoutManager or GridLayoutManager (you have to cast to the correct type you are using) to access these findVisibleXXXX() methods.

References
https://stackoverflow.com/questions/38247602/android-how-can-i-get-current-positon-on-recyclerview-that-user-scrolled-to-item