7
<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>

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

4

2 回答 2

18

在你的 AndroidManifest.xml 中添加这个属性: android:windowSoftInputMode="adjustResize"

<activity 
            android:windowSoftInputMode="adjustResize"
            android:name="com.example.stackoverflow.SimpleActivity5" >
于 2013-05-30T13:29:42.290 回答
2

您需要在清单中注释活动。请参阅属性 android:windowSoftInputMode 的清单文档,您需要指定android:windowSoftInputMode="adjustResize"以便在显示键盘时,将您的活动的视口调整为键盘上方的区域,嘿!按钮重新出现。

于 2013-05-30T13:26:58.013 回答