FileDialog bug...

Everest

Member
Licensed User
Longtime User
Hello,

I am using a tablet for development.

When calling FileDialog:

B4X:
Dim fd As FileDialog
Dim result As Int

fd.FastScroll = True
fd.ChosenName = Globals.projectName
fd.FileFilter = ".ini" 
result = fd.Show ("Select project...","OK","Cancel","",Null)

The keyboard appears and covers the bottom half of the list. There is no option to change this behavior. If I toggle voice input I see the bottom half of the list for a couple of seconds as the voice input view loads and then covers the bottom half the list.

Ideas?

Cheers,

Mark
 

Attachments

  • halfgone2.png
    halfgone2.png
    48.9 KB · Views: 213
  • full2.png
    full2.png
    64.8 KB · Views: 199

noega33

Member
Licensed User
Longtime User
Hello,

I am using a tablet for development.

When calling FileDialog:

B4X:
Dim fd As FileDialog
Dim result As Int

fd.FastScroll = True
fd.ChosenName = Globals.projectName
fd.FileFilter = ".ini"
result = fd.Show ("Select project...","OK","Cancel","",Null)

The keyboard appears and covers the bottom half of the list. There is no option to change this behavior. If I toggle voice input I see the bottom half of the list for a couple of seconds as the voice input view loads and then covers the bottom half the list.

Ideas?

Cheers,

Mark
Hi,
I'm using:
fd.KeyboardPopUp=False
(after fd.filter=".....")
It works fine

Cheers
Noega33
 
Top