Hello,
I'm showing a date pick dialog this way:
The dialog is displayed properly on the upper section of screen, but is there any way to do not show soft keyboard at all? in this kind of dialog is completely useless...
Thanks in advance
I'm showing a date pick dialog this way:
B4X:
...
dialog.Initialize(Activity)
dialog.Title = "Fecha del gasto"
dialog.PutAtTop = True
Dim input As B4XDateTemplate
input.Initialize
input.FirstDay = 1
Wait For (dialog.ShowTemplate(input, "OK", "", "CANCEL")) Complete (Result As Int)
If Result = xui.DialogResponse_Positive Then
...
The dialog is displayed properly on the upper section of screen, but is there any way to do not show soft keyboard at all? in this kind of dialog is completely useless...
Thanks in advance