Android Question Keyboard on top of EditText

BarryW

Active Member
Licensed User
Longtime User
Hi masters...

When i put an edittext inside a scrollview, keyboard hides the textbox when i try to type on it. It dont appear on the top of keyboard... Any solution? Tnx...
 

Lee Gillie CCP

Active Member
Licensed User
Longtime User
I mitigated this via app documentation:

...you may move the keyboard around on the screen in different ways by using the keyboard layout button found at the lower right corner of the keyboard.
upload_2015-12-30_7-41-15.png

You may simply press, hold, and start dragging the keyboard layout button to reposition the entire keyboard dialog. Or tap the button for a menu of layout choices.

My app runs on an LG Tablet. This feature may vary by manufacturer?

Further, at times I programmatically hide the keyboard:
B4X:
Dim IME As IME
IME.HideKeyboard
 
Upvote 0
Top