How to move the layout up when the soft keyboard is shown android
Try this in the android manifest file corresponding to the activity.
<activity android:windowSoftInputMode="adjustPan"> </activity>
Set windowSoftInputMode
property to adjustPan
and adjustResize
<activity android:windowSoftInputMode="adjustPan|adjustResize"> </activity>