How to continue selecting after onItemLongClick?

2

I have a listView , which has a onItemLongClick method that when clicked selects the clicked item. I would like to know how to continue selecting with just one click.

If someone can post an example, I would appreciate it.

    
asked by anonymous 25.11.2015 / 15:04

1 answer

1

If you can already make the selection then:

  • Make method onItemLongClick() return false .
  • Implement the onItemClick() method by passing the code that is in onItemLongClick() and that makes the selection for it.

If you do not see this response .

    
25.11.2015 / 22:53