custom listview in android kotlin with baseadapter with clicklistener code example
Example: custom listview in android kotlin with baseadapter with clicklistener
list.setOnItemClickListener { parent, view, position, id ->
val myItem = parent.getItemAtPosition(position) as MyDataObj
}