Android:如何将按钮对准键盘底部和键盘上方?

时间:2013-05-30 13:15:03

标签: android android-layout

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
<EditText
    android:id="@+id/editTextTitle"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:hint="@string/task_title"
    android:ems="10" >

    <requestFocus />
</EditText>

<RelativeLayout android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true">
<Button
    android:id="@+id/buttonSeven"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="7" />

</RelativeLayout>

尝试对齐屏幕底部的几个按钮。但是当键盘弹出时,我希望按钮向上移动到键盘上方。怎么做?

2 个答案:

答案 0 :(得分:17)

在AndroidManifest.xml中,只需添加以下属性: 的机器人:windowSoftInputMode = “adjustResize”

<activity 
            android:windowSoftInputMode="adjustResize"
            android:name="com.example.stackoverflow.SimpleActivity5" >

答案 1 :(得分:2)

您需要在清单中注释活动。请参阅the manifest documentation on attribute android:windowSoftInputMode,您需要指定android:windowSoftInputMode="adjustResize",以便在显示键盘时,您的活动的视口会调整为键盘上方的区域,并且嘿!按钮重新出现。