Skip to content
Advertisement

How to startActivity within RecyclerView CustomAdapter

I want to add startActivity() to my onClick listeners in my CustomAdapter class.

CustomAdapter.java:

JavaScript

The problem is I’m getting the following error in my IDE:

JavaScript

Initially , I thought this was happening because my CustomAdapter class was static. So, I made it non-static. But, the problem still persists. Pls guide me on making this intent work.

Advertisement

Answer

In you customer adapter class you need to get context using constructor.

JavaScript

and in constructor->

JavaScript

and then in onClickListener->

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