How to catch the event that makes visible the soft keyboard ?
The IME Library does not seem to fit the bill.
If I have an app in portrait format and an EditText at the bottom, typing is not optimal (the EditText is hidden by the soft keyboard).
It would be easy to temporarily move the EditText at the top, but it should intercept the event mentioned above.
The following sub is also not optimal
Thanks in advance.
The IME Library does not seem to fit the bill.
If I have an app in portrait format and an EditText at the bottom, typing is not optimal (the EditText is hidden by the soft keyboard).
It would be easy to temporarily move the EditText at the top, but it should intercept the event mentioned above.
The following sub is also not optimal
B4X:
Sub EditText1_TextChanged (Old As String, New As String)
'--- move EditText1 at the top
EditText1.SetLayout (0dip,0dip,100%x,100%y)
End Sub