Android Question Show Keyboard starting InputDialog

imgsimonebiliato

Well-Known Member
Licensed User
Longtime User
Hello,
how do I show directly the keyboard, when I start an InputDialog?

B4X:
Dim id As InputDialog
id.Input = 0
id.InputType = id.INPUT_TYPE_NUMBERS
id.ShowKeyboard = ?
If id.Show("Print", "From:", "Ok", "", "Cancel", Null) = DialogResponse.cancel Then Return
 
Top