I am having an issue with the Dialogs library. When I use the FileDialog to view a list of files, a blank screen is shown. However, the screen is not blank you just can't see the files because of the colors. I do not see a way to change the forground colors. If you put your finger on the dialog window to scroll, the background turns dark gray and then you can see the list of files. If I set the scrolling color to white so it should to show the names, then you see nothing. I am sure it is the Forked 2.2 Android that is the cause of this. If there anything that can be done as I would like to not have to reinvent the wheel.
Thanks,
Margret
B4X:
Sub Globals
Dim filefrom As FileDialog
filefrom.FilePath = "/mnt/sdcard/My Files/Videos"
filefrom.FileFilter = ".mp4"
End Sub
Sub Activity_Create(FirstTime As Boolean)
filefrom.Show("List Of MP4s", "", "", "", Null)
End Sub
Thanks,
Margret