I tried everyhing in this Android: How do I prevent the soft keyboard from pushing my view up?
But none of them not worked for me Here is my xml
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/footer"
android:layout_below="@+id/header"
android:isScrollContainer="false">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="30dp"
android:layout_marginRight="30dp"
android:orientation="vertical">
<....Widgets>
</LinearLayout>
</scrollview>
<com.mypackage.activities.Footer
android:id="@+id/footer"
android:layout_width="match_parent"
android:layout_height="@dimen/footerHeight"
android:layout_alignParentBottom="true"
/>
</RelativeLayout>
As well as in Manifest file used adjustResize,adjsutPan,adjustNothing