getAdapterPosition() not returning position of item in RecyclerView

后端 未结 2 1808
野趣味
野趣味 2021-01-05 04:51

This is a sort of follow-up or complement to this post. I am trying to get the position of an item in my RecyclerView, but none of the methods I have tried have worked.

2条回答
  •  囚心锁ツ
    2021-01-05 05:39

    Call getAdapterPosition() in your onClick() method because then at the time of the click you want to know the position of the item. If you check at the time of the creation it will (most of the times) be inaccurate.

提交回复
热议问题