Is there now a way to open a file from the default Gallery, which is on SD card, across many devices?
My SD card has Internal and SD folders but the following code lists an array from the Internal folder.
B4X:
Sub Button1_Click
List1 = File.ListFiles(File.DirRootExternal)
Log(List1)
End Sub
Am trying to access the Gallery and show any image without making a List or Map.
My objective is to show each file sequentially:
realPath = /storage/sdcard1/Pictures/1.jpg
realPath = /storage/sdcard1/Pictures/2.jpg
realPath = /storage/sdcard1/Pictures/3.jpg
via a Timer or Button, without first showing folder contents. Once I comprehend the path statement I'm OK.
Is this possible?
thanks