Android Question Problem hiding the keyboard

marcick

Well-Known Member
Licensed User
Longtime User
After clicking OK on this InputDialog

B4X:
Dim nameinput As InputDialog
Dim picon As Bitmap
picon.Initialize(File.DirAssets, "pushpin48.png")
nameinput.Show("","Inserire un commento per il pushpin" , "Ok", "", "", picon)

the keyboard remain visible.
I have tryed both these two solutions to hide it, but they does not work:
Any hints ?

B4X:
Dim IME1 As IME
IME1.Initialize("")
IME1.HideKeyboard
   
Dim p As Phone
p.HideKeyboard(Activity)
 
Top