Android soft keyboard resize layout
<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.
You can use manifest flags to configure the effect of the virtual keyboard. See http://developer.android.com/guide/topics/manifest/activity-element.html#wsoft
Android soft keyboard resize layout
<activity android:name=".activity.SignUpActivity"
android:screenOrientation="portrait"
android:theme="@style/AppTheme.NoActionBar"
android:windowSoftInputMode="adjustResize" />
It's Working for me try it.