B4X:
For n = 0 To fileList.Size-1
file1 = fileList.Get(n)
If file1.EndsWith(".jpg") Then
ListView1.AddSingleLine(file1)
asd.Append(file1) ' asd (whatever adds file1 to the array)
End If
Next
' Example of a fully Array that i would like to have
'asd = Array As String("IMG-20130112-WA0004.jpg", "IMG-20130112-WA0003.jpg", "IMG-20130112-WA0002.jpg", "IMG-20130112-WA0000.jpg")
I would like to find the best way to put all name in the array asd, right now i have all of them in a List. So List to String array.
Thanks
Last edited: