Without your code we don't know how you implement your onClickListener.
Normally, you implement and set the item onClickListener in the viewHolder of your RecyclerView.Adapter.
For example: ViewHolder.itemView.setOnClickListener(listener);
So the solution is you can use recyclerView.findViewHolderForAdapterPosition(0).itemView.performClick()
PS: Do not use findViewHolderForLayoutPosition()
according to the Doc
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…