Ashok
09/27/2017, 3:29 PMval 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)
}
...
}
menegatti
09/27/2017, 3:33 PM