Consider the following example for a view:
<LinearLayout>
<EditText />
<Button />
</LinearLayout>
And in in the manifest file:
android:windowSoftInputMode="adjustPan"
onfocus edittext, the soft keyboard covers a button like so:
but I'd like it like this:
How to scroll view a little more so that the button is visible?
I just found this post and saw it was unanswered. For the sake of helping others who may come use this in the manifest for activity
android:windowSoftInputMode="stateUnchanged|adjustResize"
try just one and see if that suits your needs.
Good luck