我在TabActivity中有一个表单(Scroll View),页面底部显示了标签,我在页面底部有一个EditText元素。每当用户想要输入文本总UI移动顶部以及标题栏。有没有可能阻止它?
答案 0 :(得分:1)
尝试将android:windowSoftInputMode
设置为Manifest中的活动。否则,将布局更改为亲戚并制作EditText android:layout_alignParentBottom="true"
请参阅此Example
答案 1 :(得分:1)
在您的活动中使用Android清单中的android:windowSoftInputMode="adjustPan"
或参考SoftInputMode documentation。