Android Question Get ActiveControl in event IME_HeightChanged

netsistemas

Active Member
Licensed User
Longtime User
How get the active control when i capture the event
IME_HeightChanged
with IME object.

i think set a controol in ENTERPRESSED but, the HEIGHTCHANGED are thrown bebore.

and this code are bad (error)

B4X:
Private Sub IME_HeightChanged (NewHeight As Int, OldHeight As Int)

 capturarcontrol(Sender)

end sub
 

netsistemas

Active Member
Licensed User
Longtime User
Semi-solved:

FOCUSCHANGE are throw after.
B4X:
Private Sub B4XPedidoLineaPartida_FocusChanged (HasFocus As Boolean)
    capturarcontrol(Sender)
End Sub

this is a solution, but... get control in IME_HeightChanged ?
 
Upvote 0
Top