RecyclerView – Get view at particular position
This is what you’re looking for. I had this problem too. And like you, the answer is very hard to find. But there IS an easy way to get the ViewHolder from a specific position (something you’ll probably do a lot in the Adapter). myRecyclerView.findViewHolderForAdapterPosition(pos); NOTE: If the View has been recycled, this will return … Read more