我的布局看起来像这样
<LinearLayout>
<Toolbar/>
<Scrollview>
<More views including a edittext in the bottom/>
</Scrollview>
</LinearLayout>
问题是,每当我选择editext键入内容时,功能键就会向上推edittext,这应该是这样,但是整个布局都随之推高。.我想将工具栏保持在屏幕上,就像在WhatsApp中一样,通过软键上下推edittext时,工具栏仍保留在屏幕上。
答案 0 :(得分:0)
刚刚设置
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:isScrollContainer="false">
并将其添加到您的线性布局中
android:windowSoftInputMode="adjustPan"