``` val adapter = ShopListAdapter(this@Fragment.co...
# android
a
Copy code
val adapter = ShopListAdapter(this@Fragment.context) {
                    val selectedItem = adapter.selected
                    compareItems(selectedItem, it)
                }


class ShopListAdapter(context:Context, onSelect:(String) ->Unit) : RecyclerView.Adapter<VH> {
…..
view.onClick…(…) {
   onSelect(view.tag)
}
...
}
m
quick tip, you can better format your code by wrapping it in triple backticks `