At First, my RecyclerView items are ok, but on scrolling, items are shown on the wrong position for example: item 6 shown in position 67. Although onClick listener and getAdapte
In your adapter class override this method and replace position to getItemViewType(position)
@Override public int getItemViewType(int position) { return position; }