Hi,
Is there any way the event can fail? I mean, any suggestion to follow when the event is never called?
I put this code in a clean project (The layout contains an EditText view):
This code works fine, as soon as I click the EditText and the keyboard appears, the event is triggered.
But when I try to implement this in a big project I've done before, the event doesn't work with any EditText view
I've loaded the same Libs and copied Manifiest contents just in case so I can be sure isn't any kind of incompatibility.
Any ideas?
Thanks!
Is there any way the event can fail? I mean, any suggestion to follow when the event is never called?
I put this code in a clean project (The layout contains an EditText view):
B4X:
Sub Activity_Create(FirstTime As Boolean)
'Do not forget to load the layout file created with the visual designer. For example:
Activity.LoadLayout("Test")
MyIME.Initialize("NewIME")
MyIME.AddHeightChangedEvent
End Sub
Sub NewIME_HeightChanged(NewHeight As Int, OldHeight As Int)
Dim Dummy As String
End Sub
This code works fine, as soon as I click the EditText and the keyboard appears, the event is triggered.
But when I try to implement this in a big project I've done before, the event doesn't work with any EditText view
I've loaded the same Libs and copied Manifiest contents just in case so I can be sure isn't any kind of incompatibility.
Any ideas?
Thanks!