我的应用程序具有这样的布局活动

<RelativeLayout
    android:id="@+id/layoutMain"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/backgroundchatfixed">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/layoutKhungChat"
        android:id="@+id/svChat">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:id="@+id/layoutChat">

        </LinearLayout>

    </ScrollView>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/background_khungchat"
        android:layout_alignParentBottom="true"
        android:id="@+id/layoutKhungChat">

        <EditText
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/khungchat_chat"
            android:layout_centerVertical="true"
            android:id="@+id/etChatbox"/>

    </RelativeLayout>

</RelativeLayout>

当我触摸我的Edittext时,只有布局“布局KungChat”向上推。
任何解决方案也可以将Scrollview推到上方吗?
谢谢。

最佳答案

尝试将其添加到清单中的活动标签中:

android:windowSoftInputMode="adjustPan"

10-04 23:38