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