Hello everyone,
my code won't work and i have no idea why actually
maybe you can help me
i have a few rows of data shown in a customListView, filled with ListView.add(data, index)
now i wanna put it back into a list to work with the selected data, but this won't work as i thought
My ListView is called EdText and i want to put the clicked row in a list (tmp)
code on ItemClick is:
I just checked again,
Index and Value both just have "1" in it. the row i clicked in the list contains a number, a time and 2 names.
how do i get these infos?
my code won't work and i have no idea why actually
maybe you can help me
i have a few rows of data shown in a customListView, filled with ListView.add(data, index)
now i wanna put it back into a list to work with the selected data, but this won't work as i thought
My ListView is called EdText and i want to put the clicked row in a list (tmp)
code on ItemClick is:
B4X:
Sub EdText_ItemClick (Index As Int, Value As Object)
Dim tmp As List
tmp.Initialize
tmp.Add(EdText.GetValue(Index))
I just checked again,
Index and Value both just have "1" in it. the row i clicked in the list contains a number, a time and 2 names.
how do i get these infos?
Last edited: