In 2 projects, I use the same code.
In one of them the file browser dialog appears with white letters on a black background - great.
In the other, using the same code, its white -ish on a white background.. the folder and file names are almost unreadable.
ANy idea why the difference and how to address it?
	
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
			
			In one of them the file browser dialog appears with white letters on a black background - great.
In the other, using the same code, its white -ish on a white background.. the folder and file names are almost unreadable.
ANy idea why the difference and how to address it?
			
				B4X:
			
		
		
		    Try
        Dim fd As FileDialog
        fd.FilePath = File.DirRootExternal
        Dim sf As Object = fd.ShowAsync("Select file", "Open", "Cancel", "", Null, False)
        Wait For (sf) Dialog_Result(Result As Int)
        If Result = DialogResponse.POSITIVE Then
            
    'Do stuff with the file here
        End If
    Catch
        Log ("Error opening file chooser")
    End Try 
				 
 
		 
 
		 
 
		 
 
		 
 
		 
 
		 
 
		