Android Question Item exist in list (by index)

Almog

Active Member
Licensed User
Hello,

Does anybody know if there is a way to check if an item exists in a list, finding by index?
for example:
If list1.isexist(8) Then
......
End if

Thanks in advance
 

DonManfred

Expert
Licensed User
Longtime User
indexof?

If the list size is bigger then 8 then the item with index 8 exists.
 
Upvote 0
Top