0

我有一个编辑文本,以及编辑文本下方的一个按钮。

这是一个片段布局。

我希望键盘向上推按钮,以便它始终在屏幕上可见。

这是我的布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <EditText
        android:id="@+id/editText1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="110dp"
        android:ems="10" >

    </EditText>

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/editText1"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="91dp"
        android:text="Button" />

</RelativeLayout>
4

1 回答 1

7

使用 android:windowSoftInputMode="adjustPan" 或 android:windowSoftInputMode="stateHidden"

于 2013-06-18T07:29:14.677 回答