I would like the keyboard to show, after pressing Enter, and the entry does not meet the criteria.
I've tried everything I can think of, but in vain.
Any ideas?
I've tried everything I can think of, but in vain.
Any ideas?
B4X:
Sub EditText1_EnterPressed
If EditText1.Text <> "something" Then
EditText1.RequestFocus
IME.ShowKeyboard(EditText1)
Return
End If
End Sub
Sub EditText1_TextChanged (Old As String, New As String)
IME.ShowKeyboard(EditText1)
End Sub
Sub EditText1_FocusChanged (HasFocus As Boolean)
IME.ShowKeyboard(EditText1)
End Sub