I have two activity forms in Android Studio. I am trying to get it so the form will scroll and when the virtual keyboard pops up it won't cover the contents. For example:
As you can see the keyboard overlaps two buttons underneith the two text boxes. How can I make it so it doesn't do this?
I have tried using android:windowSoftInputMode="adjustResize"
in the manifest file but it seems to still cover the buttons.
Cheers.