Android: How to push button above soft keyboard
android, android-layout, android-softkeyboard, java, xml
Solution
You need to set your keyboard's input mode to `adjustResize`. You can do this adding the following line to your activity's attributes in the manifest:
android:windowSoftInputMode="adjustResize"
Here's an example of the attribute added in the activity:
<activity
android:name=".activity.MyActivity"
android:windowSoftInputMode="adjustResize">
</activity>
Problem
I've got a "save" button which I want to push up together with the soft keyboard. So when the user clicks an EditText in my layout, then the button has to stay above the keyboard. Now the button becomes hidden underneath the keyboard. How do you do this? Thanks in advance!