Android Question List (Array) to String ?

GMan

Well-Known Member
Licensed User
Longtime User
How can i convert an list array ("1.jpg","2.jpg" ....) to a string so that i can use the "1.jpg" etc. as a single string to load the depending file ?
 

DonManfred

Expert
Licensed User
Longtime User
B4X:
for each entry as string in myarray
log(entry)
next
?
 
Upvote 0
Top