修复按钮在屏幕上的位置

时间:2017-05-20 08:35:09

标签: android xml

如何将按钮钉在屏幕上并将其固定在那里?当您打开键盘时,按钮位于键盘上方,当关闭时,它会返回到屏幕。我需要它隐藏在键盘下面,也就是说,它一直在固定的地方。

负责按钮的代码片段:

<RelativeLayout
        android:padding="10dp"
        android:orientation="vertical"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/confirm_order_layout">

        <Button
            android:id="@+id/confirm_order"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:background="@drawable/button_style_green"
            android:text="@string/confirm_order"
            android:textSize="18dp"
            android:textStyle="bold" />

    </RelativeLayout>

1 个答案:

答案 0 :(得分:0)

在menyfest文件的活动区域添加以下行。

android:windowSoftInputMode="adjustResize"