editText和softkeyboard之间的空格

时间:2013-11-15 20:40:26

标签: android xml

我的活动的editText字段几乎位于底部。 当我专注于editText字段时,键盘会显示并向上推动我的edittext字段。

当它停止时,editText和我的软键盘之间没有空格。

可以增加一些余量吗?

这是我的代码:

<?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="wrap_content"
android:background="@color/bg_yellow"
android:orientation="vertical"
>

<RelativeLayout 
    android:layout_width="match_parent"
    android:layout_height="100dp"
    android:layout_gravity="bottom"
    android:layout_alignParentBottom="true"
    android:paddingTop="25dp"
    >

    <RelativeLayout 
        android:layout_width="340dp"
        android:layout_height="100dp"
        android:layout_centerHorizontal="true"
        >

        <EditText 
            android:layout_width="340dp"
            android:layout_height="45dp"
            android:background="@drawable/edit_text_field"
            android:inputType="text"
             />

    </RelativeLayout>
</RelativeLayout>

键盘显示前editText字段的位置: http://postimg.org/image/826fwy18z/

和键盘显示时的图像,光标和键盘之间没有空格: http://postimg.org/image/97qlfb4zx/

2 个答案:

答案 0 :(得分:1)

您可以在清单文件中使用Activity的android:windowSoftInputMode属性。

在你的情况下使用android:windowSoftInputMode = “adjustResize”。您也可以查看其他属性。

希望这有帮助。

感谢。

答案 1 :(得分:-1)

在编辑文本字段底部添加边距

android:layout_marginBottom="10dp"