在android java中显示软键盘时,布局不会向上移动或平移

时间:2017-01-24 12:30:36

标签: java android

我想在显示键盘时调整大小或平移布局。 这是我的源代码。

activity_forget_password.xml

<?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"
    android:fitsSystemWindows="true">

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/forgot_password_bg"
        android:scaleType="fitXY"
        android:largeHeap="true"/>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="15dp">

        <com.opkix.app.utils.OpenSassTextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/forget_password_introduce_string"
            android:layout_alignParentBottom="true"
            android:textColor="@android:color/white"
            android:textSize="12sp"/>
    </RelativeLayout>
</RelativeLayout>

的manifest.xml

<activity android:name=".activities.auth.ForgetPasswordActivity"
    android:windowSoftInputMode="adjustPan"
    android:noHistory="true">

从我的源代码中可以看出,我添加了fitsSystemWindows和windowSoftInputMode。

有人可以帮助我吗?

1 个答案:

答案 0 :(得分:0)

将ScrollView添加为RelativeLayout的父级。这不是正确的答案,但它会起作用。

例如

    <?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"
        android:fitsSystemWindows="true">
 <ScrollView
            android:layout_width="match_parent"
            android:layout_height="match_parent">
     <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">
        <ImageView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:src="@drawable/forgot_password_bg"
            android:scaleType="fitXY"
            android:largeHeap="true"/>

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_margin="15dp">

            <com.opkix.app.utils.OpenSassTextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="@string/forget_password_introduce_string"
                android:layout_alignParentBottom="true"
                android:textColor="@android:color/white"
                android:textSize="12sp"/>
        </RelativeLayout>
    </RelativeLayout>
    </ScrollView>
  </RelativeLayout>