当 EditText 处于焦点时,屏幕在键入时保持移动

Screen keeps moving while typing when EditText is in focus

我的 EditText 位于 ImageView 下方。当我开始在 EditText 上打字时,屏幕不会保持原样,而是一直上下滚动,如 this video 所示。另一个问题是键盘覆盖了部分EditText。

这是我的 activity 的 XML 的样子:

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:focusable="true"
    android:focusableInTouchMode="true"
    android:orientation="vertical"
    >

    <ImageView
        android:id="@+id/display_photo"
        android:layout_width="match_parent"
        android:layout_height="250dp"
        android:layout_gravity="center_horizontal"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:adjustViewBounds="true"/>

    <android.support.design.widget.TextInputLayout
        android:id="@+id/caption_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="5dp"
        android:layout_marginRight="5dp"
        android:layout_marginTop="7dp"
        android:theme="@style/LoginFieldLayout"
        app:hintTextAppearance="@style/MomentLabel">

        <android.support.design.widget.TextInputEditText
            android:id="@+id/et_start_photo_story_title"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:layout_marginBottom="5dp"
            android:adjustViewBounds="true"
            android:gravity="bottom"
            android:hint="@string/caption_hint"
            android:inputType="textNoSuggestions|textMultiLine"
            android:lines="8"
            android:maxLength="500"
            android:minLines="1"
            android:paddingBottom="15dp"
            android:privateImeOptions="nm"
            android:textColor="@color/black"
            android:textColorHint="@color/black"
            android:textSize="18sp"
            android:theme="@style/StartAdventureEditText" />

    </android.support.design.widget.TextInputLayout>

我还在清单文件中添加了这一行:android:windowSoftInputMode="adjustResize"

在您的 androidManifestFile.xml

中使用 "adjustNothing"
    <activity
        android:name="com.myApp.ui.activity.MainActivity"
        android:screenOrientation="portrait"
        android:windowSoftInputMode="stateAlwaysHidden|adjustNothing" />
    <activity