顶部的Android按钮和屏幕底部的ScrollView

时间:2016-01-06 07:10:19

标签: android xml android-layout uiscrollview

我在ui上面有两个按钮“Submit”和“Reset”,下面是我的表格。问题是当我打开键盘时,表单向上滚动并位于顶部按钮布局下方。应该是什么问题?我想只在顶部显示buutons。

2 个答案:

答案 0 :(得分:6)

试试这个 将RelativeLayout替换为Linearlayout,方向为Vertical。

答案 1 :(得分:0)

您可以尝试阻止键盘向上滚动,因此键盘将位于您的布局上方:

将此添加到您的清单

<activity 
    android:name="yourActivity"
    android:screenOrientation="portrait"
    android:windowSoftInputMode="stateVisible|adjustPan"/>

然后把它放在你的ScrollView

<ScrollView
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:isScrollContainer="false">
</ScrollView>

如果有任何问题发表评论!

祝你好运