Show List Action after a LongClick

jcesar

Active Member
Licensed User
Longtime User
Hi

I need to show a action list (copy,delete...) after a LongClick inside my listview item, something like the list in the second image.

SS-2012-08-29_13.02.51.png


Someone knows how can i show that list ?
 

derez

Expert
Licensed User
Longtime User
try this:

InputList (Items As List, Title As String, CheckedItem As Int) As Int

Shows a modal dialog with a list of items and radio buttons. Pressing on an item will close the dialog.
Returns the index of the selected item or DialogResponse.Cancel if the user pressed on the back key.
List - Items to display.
Title - Dialog title.
CheckedItem - The index of the item that will first be selected. Pass -1 if no item should be preselected.
 
Upvote 0
Top