Android Question EditText is on the back of android keyboard

BarryW

Active Member
Licensed User
Longtime User
Hi master's. I have a problem when im entering on my last edittext on a scrollview. when im entering on that edittext the android keyboard hides the edittext on its back. How to show my edittext on top of my keyboard. pls help . . .
 
Last edited:

Haris Hafeez

Active Member
Licensed User
Longtime User
Adding further to LucaMS' post about using the IME library, you need to do the following:
  1. Initialize the IME library
  2. call IME.AddHeightChangedEvent in your activity's create.
  3. Define your keyboard event handler, such as IME_HeightChanged(NewHeight As Int, OldHeight As Int)
    • Use the new dimensions to calculate the size of views/panels in your activity.

Hope this helps.
 
Upvote 0
Top