Как передать позицию в RecyclerView.ViewHolder?

Как передать текущую позицию в мой класс, который расширяет RecyclerView.ViewHolder? Это нужно для того, чтобы создать представление программно

1 ответ

Решение

RecyclerView держатель уже имеет getAdapterPosition() а также getLayoutPosition() методы из документов:

final int   getAdapterPosition()
Returns the Adapter position of the item represented by this ViewHolder.

final int   getLayoutPosition()
Returns the position of the ViewHolder in terms of the latest layout pass.
Другие вопросы по тегам