Android Question Positioning EditText Above Keyboard

larprogramer

Member
Licensed User
When I press the EditText, the keyboard shows up and I can't see anymore what I'm typing (because the EditText is now behind the keyboard, on the bottom). How could I move the EditTextautomatically
just above the keyboard, when it has been pressed?
ssds.png




sss.png
 

npsonic

Active Member
Licensed User
Add this to your manifest
B4X:
SetActivityAttribute(main, android:windowSoftInputMode, adjustPan|stateHidden)
 
Upvote 0
Top