B4X:
ime.Initialize("IME")
B4X:
Private Sub IME_HeightChanged(NewHeight As Int, OldHeight As Int)
Log(NewHeight)
Log(OldHeight)
End Sub
Private Sub IME_HandleAction As Boolean
Dim e As EditText
e = Sender
If e.Text.Length = 0 Then
Return True
Else
Return False 'will close the keyboard
End If
End Sub
how can i intercept the closing of the keyboard?
also given the name of the event as examples found in the forum the events do not fire
Last edited: