Android soft keyboard resize layout

Viewed 60006

When the virtual keyboard opens, it resizes my layout. How can i made for put the keyboard on my layout? And what it doesn't re-size my layout?

4 Answers
<application
    android:windowSoftInputMode="adjustResize"> 
</application>

adjustPan only resizes the input field by pushing it up just a little above the keyboard, in which case the keyboard still covers every other view beneath it.

Related