How to I show the relative layout in the red area when soft input opened? I tried adjustPan and adjustResize input modes but did not happen. Any ideas?
First, add android:windowSoftInputMode="adjustResize"
to your activity at manifest.xml.
Then create layout like below.
RelativeLayout
aligned to bottom
.above
from Bottom View.<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:layout_above="@+id/bottomView"
android:layout_width="match_parent"
android:layout_height="wrap_content">
//scrollable content
</ScrollView>
<RelativeLayout
android:id="@+id/bottomView"
android:layout_alignParentBottom="true"
android:layout_width="match_parent"
android:layout_height="wrap_content">
//your bottom content
</RelativeLayout >
</RelativeLayout>