Android Question comparing selected spinner to listview

merlin2049er

Well-Known Member
Licensed User
Longtime User
Is there a quick way to check to see if a value is in the listview? Or do I need to loop thru and individually check each item?
 

merlin2049er

Well-Known Member
Licensed User
Longtime User
Thanks. I tried looping thru the listview to check if I had a match.

It was getting a bit messy, and ran into index out of bound problems.

for I = 0 to listview1.size
...
next
 
Upvote 0
Top