Chris Guanzon Active Member Licensed User Longtime User Sep 5, 2020 #1 Hello, does b4i supports IME? I want to use the IME_HeightChanged in b4a. Last edited: Sep 5, 2020
Chris Guanzon Active Member Licensed User Longtime User Sep 5, 2020 #2 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
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