larprogramer Member Licensed User Oct 21, 2018 #1 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?
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?
npsonic Active Member Licensed User Oct 21, 2018 #2 Add this to your manifest B4X: SetActivityAttribute(main, android:windowSoftInputMode, adjustPan|stateHidden) Upvote 0
Add this to your manifest B4X: SetActivityAttribute(main, android:windowSoftInputMode, adjustPan|stateHidden)
larprogramer Member Licensed User Oct 21, 2018 #3 npsonic said: Add this to your manifest B4X: SetActivityAttribute(main, android:windowSoftInputMode, adjustPan|stateHidden) Click to expand... thanks you so much Upvote 0
npsonic said: Add this to your manifest B4X: SetActivityAttribute(main, android:windowSoftInputMode, adjustPan|stateHidden) Click to expand... thanks you so much