我的相对布局只包含编辑文本视图。但是当edittext的内容增加时,我的标题栏会向上移动。我经历的大多数解决方案都解决了当键盘弹出时移动标题栏的问题。但我没有发现任何内容,以防其内容增加。我也使用了android:isScrollContainer =“false”,如本文How to avoid soft keyboard pushing up my layout?中所建议的那样,但仍然是同一个问题。有没有办法防止它?这是我的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>
答案 0 :(得分:1)
我设法通过将edittext放在scrollview中并用清单中的adjustSize替换adjustPan来解决这个问题。这是最终的工作布局
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rl_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background">
<EditText
android:id="@+id/hidden_edit_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:imeOptions="flagNoExtractUi"
android:inputType="textMultiLine"
android:paddingLeft="10sp"
android:paddingRight="5sp"
android:paddingTop="5sp"
android:singleLine="false"
android:textSize="25sp" >
</EditText>
</ScrollView>
答案 1 :(得分:0)
尝试在删除后运行代码:
android:background="@android:color/transparent"
答案 2 :(得分:0)
使您的相对布局高度和宽度为wrap_content
..........可能有效。因为当文本增加时,完整的布局会发生变试试吧请rpy
答案 3 :(得分:0)
通常可以通过在AndroidManifest文件中为您的活动添加android:windowSoftInputMode="adjustPan"
属性来解决此问题。