I declare a nullable `var listener: ((View, Int) -...
# android
k
I declare a nullable
var listener: ((View, Int) -> Unit)?
in my adapter and set it from the Activity. Then I can
.?invoke()
when an item is clicked.