Android: Resize only parts of view with soft keyboard on screen

The full solution involves a few key points Use RelativeLayout, so that Views can be setup to overlap one another Align the EditText with the bottom of the Windows using android:layout_alignParentBottom=”true” Use android:windowSoftInputMode=”adjustResize” in your manifest, so that the bottom of the Window changes when the keyboard pops up (as you mentioned) Put the ImageView … Read more