使屏幕底部出现在键盘上方

时间:2015-07-08 09:11:18

标签: android android-layout

您好我正在开发一条有3行的多行EditText。并且键盘总是出现在光标下方,但即使我在第一行写入,我也希望始终显示整行3行。所以我需要一种方法将view(screen/layout)的底部放在键盘的顶部。

现在我使用一个简单的EditText,其中有3行,标志为multiline

    <EditText
        android:id="@+id/editTextMessage"
        android:layout_width="0dip"
        android:layout_height="match_parent"
        android:layout_marginBottom="2dp"
        android:layout_marginLeft="10dp"
        android:layout_weight="0.7"
        android:background="@drawable/button_background"
        android:ems="10"
        android:gravity="top|left"
        android:hint="Message"
        android:inputType="textMultiLine"
        android:lines="3"
        android:maxLength="140"
        android:paddingLeft="5dip"
        android:paddingRight="5dip"
        android:paddingTop="5dip"
        android:textColorHint="@color/JLGreyDarkSend"
        android:textSize="14sp">

3 个答案:

答案 0 :(得分:3)

您可以尝试将android:windowSoftInputMode="adjustResize"设置为活动。

答案 1 :(得分:2)

您可以尝试将内容包装到ScrollView中,这样在使用键盘时应该将您的内容推送出来

答案 2 :(得分:1)

您必须使用windowSoftInputMode。有关详细信息,请参阅developer docs