How is it possible to get the position of the item which was clicked in the RecyclerView row and than make a intent to an activity in the onClick m
Within your onClick(View v) you can simply call getLayoutPosition() which will return the position where the click happened. Check the official docs for further information.
So your code would be something like this:
@Override
public void onClick(View v) {
switch(getLayoutPosition()){
//TODO
}
}
Preferably you should use an Interface to handle the click.