I am retrieving files from a folder and placing the items in a list:
The Log is:
How do I:
Extract the File Name as a String.
Extract the Image.
Once I have the individual components, I can load into a ListView (ULV)
B4X:
Dim fileList As List
Dim fileCount As Int
fileList = File.ListFiles(File.DirRootExternal & "/Pictures/")
fileCount = fileList.Size
Log("File List = " & fileList)
Log("File Count = " & fileCount)
B4X:
File List = (ArrayList) [IMG_20160901_134832.jpg, IMG_20160901_135028.jpg]
File Count = 2
Extract the File Name as a String.
Extract the Image.
Once I have the individual components, I can load into a ListView (ULV)