I'm trying to implement a recyclerView but how can I set an onItemClickListener for my recyclerView?
There are already some answers on SO but they are briefer than what I just need to get the onItemClickListener for RecyclerView.
What is the easiest way to get the onItemClickListener for RecyclerView?
In Android, RecyclerView doesn’t have any
listeners
like in ListView. So you need to create your own class by extending theRecyclerView.OnItemTouchListener
.Create a class
RecyclerTouchListener.java
Then in activity, Override the
onClick
method.By this way, you can handle recyclerview
item click event
.