Search code examples
androidlistadapter

What's the difference between OnListItemClick vs onItemClickListener


I can't figure out which to use. I am trying to make it so that when you click on an item on the list view adapter, it will delete the item. Which one should I use?


Solution

  • The listener is an interface and the other is the method you implement for that interface. You'll also need setOnItemClickListener().