I\'m trying to pass a listener from an action to a class (an adapter).
In java (code from the Action):
private void setListeners() { adapterRe
Change
adapterRecyclerView!!.setListener { v -> SomeCodehere.... }
to
adapterRecyclerView!!.setListener(object : View.OnClickListener { })
and implement the methods of View.OnClickListener