I can't redirect to another page when I click on listview
I'm designing a phone book application, I've done most things, but I can't go to the profile of the person whose name I clicked. I would appreciate if you explain the use of setOnListener in detail.
class MainActivity : AppCompatActivity() {
var listView: ListView? = null
lateinit var binding: ActivityMainBinding
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
binding = ActivityMainBinding.inflate(layoutInflater)...