In old code when I was using ListView with custom adapter I could get item with this code.
ListView
Message msg = (Message) adapter.getItem(poistion);
I think the correct way to getItem() is through RecyclerView LayoutManager.
getItem()
RecyclerView LayoutManager
View v = recyclerView.getLayoutManager().findViewByPosition(position);