Hi I am trying to check whether recycler view current position has changed. and get that position while scrolling. Tried getting it inside onbind but it gets called only once. Searched for answers and found this. But looking for some workaround to implementing it. Let me know
@Override
public void onBindViewHolder(final MyViewHolder holder, final int position) {
final News news = episodeList.get(position);
Log.e(TAG, "onBindViewHolder: " + holder.getAdapterPosition() );
}
Above here all the positions are logged all together.