我有一个仅包含编辑文本视图的相对布局。但是当edittext的内容增加时,我的标题栏会向上移动。我经历的大多数解决方案都解决了键盘弹出时标题栏移动的问题。但是我没有发现任何内容以防其内容增加。我还按照这篇文章中的建议使用了 android:isScrollContainer="false"如何避免软键盘推高我的布局?,但仍然是同样的问题。有没有办法防止它?这是我的xml文件
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scroll_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:isScrollContainer="false"
android:background="@drawable/background" >
<EditText
android:id="@+id/hidden_edit_view"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:imeOptions="flagNoExtractUi"
android:inputType="textMultiLine"
android:singleLine="false"
android:paddingLeft="10sp"
android:paddingTop="5sp"
android:paddingRight="5sp"
android:scrollbars="vertical"
android:background="@android:color/transparent"
android:textSize="26sp" >
</EditText>
</RelativeLayout>