BarryW Active Member Licensed User Longtime User Sep 11, 2014 #1 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: Sep 11, 2014
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 . . .
LucaMs Expert Licensed User Longtime User Sep 11, 2014 #2 Hi, you should take a look at IME Keyboard examples (search on site) Last edited: Sep 11, 2014 Upvote 0
H Haris Hafeez Active Member Licensed User Longtime User Sep 11, 2014 #3 Adding further to LucaMS' post about using the IME library, you need to do the following: Initialize the IME library call IME.AddHeightChangedEvent in your activity's create. 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
Adding further to LucaMS' post about using the IME library, you need to do the following: Initialize the IME library call IME.AddHeightChangedEvent in your activity's create. 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.