I have problem with Ime lib .
If I use the statement from heightchanged event then the edit text lose focus and the keybord does not write nothing in the edit text !!
How can I find the problem ? It could be related to other ime.hidekeyboard events from the program but I can not find it ... I will reduce all code to see what happens ?
Any sugestions ?
If I use the statement from heightchanged event then the edit text lose focus and the keybord does not write nothing in the edit text !!
How can I find the problem ? It could be related to other ime.hidekeyboard events from the program but I can not find it ... I will reduce all code to see what happens ?
Any sugestions ?
B4X:
IME1.Initialize("IME1")
IME1.AddHeightChangedEvent
IME1_HeightChanged(100%y, 0)
IME1.AddHandleActionEvent(edit_notite)
'I want the edit_text to be placed on bottom and rise together with the keyboard
Sub IME1_HeightChanged(NewHeight As Int, OldHeight As Int)
'is the statement below good ?
' edit_notite.Top=NewHeight-edit_notite.Height
' edit_notite.BringToFront
End Sub