Android软键盘隐藏RecyclerView

alv*_*lof 6 android chat android-softkeyboard android-recyclerview

我正在尝试制作评论/聊天布局,并将 aRecyclerView和 a 固定EditText在底部。请不要说adjustPanadjustResize。不起作用。adjustPan隐藏键盘。

我真的需要帮助,这真的很令人沮丧

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/appbarlayout"
        android:paddingTop="@dimen/app_bar_top_padding">

        <android.support.v7.widget.Toolbar
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:theme="@style/ThemeOverlay.AppCompat.ActionBar"
            android:id="@+id/toolbar"
            app:titleTextColor="#FFFFFF" />

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


    <android.support.v7.widget.RecyclerView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/recycler_view"
        android:layout_below="@+id/appbarlayout"
        android:isScrollContainer="false"
        android:stackFromBottom="true"
        android:transcriptMode="normal"/>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#2b2b2b"
        android:orientation="vertical"
        android:id="@+id/chat_box"
        android:layout_alignParentBottom="true">

        <View
            android:layout_width="match_parent"
            android:layout_height="1dp"
            android:background="?android:attr/listDivider"/>

        <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:padding="16dp">

            <EditText
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:hint="Skriv en kommentar"
                android:background="@android:color/transparent"
                android:textColor="@color/white"
                android:textColorHint="#d4d4d4"
                android:inputType="textCapSentences|textMultiLine"
                android:layout_marginRight="40dp"/>

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/ic_send"
                android:background="@drawable/click"
                android:layout_gravity="right|center_vertical" />

        </FrameLayout>

    </LinearLayout>


</RelativeLayout>
Run Code Online (Sandbox Code Playgroud)

Gab*_*han 0

正确答案是 adjustResize,因此应用程序会在键盘上方调整大小。然而,为了使其正常工作,布局的其余部分需要编写为可调整大小。你的不是,因为回收者视图没有固定到位。添加layout_above="@+id/chatBox"对其的约束,使其位于编辑文本上方,并且应调整大小以正确适应空间。

另外,adjustPan 不会隐藏键盘。如果确实如此,那么您的代码中确实有问题。adjustPan 向上滑动您的应用程序而不调整大小。如果您能找出应用程序中隐藏键盘的内容,这可能就是您想要的。