Skip to content
Advertisement

RecyclerView Item Click Listener the Right Way

I use RecyclerView adapter to display data inside an activity, I want to implement onClickListener inside the activity, currently, I am setting onClickListener inside adapter as usual which works fine.

JavaScript

However I want to implement it inside activity so I have greater control. This doesn’t serve my purpose. I think it’ll be useful for a lot of us.

Advertisement

Answer

You need to check this tutorial here for better understanding on how you can achieve the behaviour that you want.

In case of handling the onClickListener from your activity you need to work based on a callback implementation with an interface. Pass the interface from the activity to your adapter and then call the callback function from your adapter when some items are clicked.

Here’s a sample implementation from the tutorial.

Let us first have the interface.

JavaScript

You need to modify your adapter to take the listener as the parameter like the one stated below.

JavaScript

Now in your onBindViewHolder method, set the click listener.

JavaScript

Now setting the adapter in your RecyclerView.

JavaScript

So the whole adapter code looks like the following.

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement