Android Question Recovery fom listview?

Arturo Suarez

Member
Licensed User
Longtime User
Hi.
How can recovery the third value fom listview1.AddTwoLines2(String A, String B, Number C)
Need get the value C
Thanks
 

mangojack

Well-Known Member
Licensed User
Longtime User
Try this ..

B4X:
Sub ListView1_ItemClick (Position As Int, Value As Object)
     
     'get the return value of clicked item
     Dim x As Int
     x = Value
   
End Sub

Cheers mj
 
Upvote 0
Top