答案 0 :(得分:0)
首先,将android:windowSoftInputMode="adjustResize"
添加到manifest.xml的活动中。
然后创建如下的布局。
RelativeLayout
aligned to bottom
。above
。<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>