iOS Question B4i IME Height Changed

Chris Guanzon

Active Member
Licensed User
Longtime User
Hello, does b4i supports IME? I want to use the IME_HeightChanged in b4a.
 
Last edited:

Chris Guanzon

Active Member
Licensed User
Longtime User
I found a solution

B4X:
Private Sub Page_KeyboardStateChanged (Height As Float)
    If Height > 0 Then
        ScrollView1.Height = ScrollView1.Height - Height
    Else
        ScrollView1.Height =  RegistrationPage.RootPanel.Height - 60dip
    End If
End Sub
 
Upvote 0
Top