android RecyclerView在键盘打开时收缩

lstz6jyr  于 2023-04-04  发布在  Android
关注(0)|答案(5)|浏览(175)

我有一个回收站

<androidx.recyclerview.widget.RecyclerView
    android:id="@+id/serviceRecyclerView"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    app:layout_constraintTop_toBottomOf="@+id/addNewServiceBtn"
    app:layout_constraintBottom_toBottomOf="parent"
    android:paddingBottom="10dp"
    android:layout_marginTop="20dp"
    />

里面有

<androidx.constraintlayout.widget.ConstraintLayout
    android:id="@+id/serviceSelectExpertRegisterContainer"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:layout_constraintTop_toTopOf="parent"
    android:background="@drawable/border_edit_text"
    android:layout_marginHorizontal="20dp"
    android:paddingVertical="5dp"
    >
    <Spinner
        android:id="@+id/serviceSelectExpertRegister"
        android:layout_width="match_parent"
        android:layout_height="30dp"
        app:layout_constraintTop_toTopOf="parent"
        android:spinnerMode="dropdown"
        />

</androidx.constraintlayout.widget.ConstraintLayout>

<EditText
    android:id="@+id/serviceDescriptionExpertRegister"
    app:layout_constraintTop_toBottomOf="@+id/serviceSelectExpertRegisterContainer"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginHorizontal="20dp"
    android:hint="@string/service_description"
    android:background="@drawable/border_edit_text"
    android:padding="8dp"
    android:layout_marginTop="15dp"
    android:gravity="top|start"
    android:inputType="textMultiLine"
    android:lines="3"
    android:textColor="@color/light_grey"
    />

当我打开我的键盘时,它会缩小,如图像所示this is the shrinked image
this is not shrinked one
我试过android:windowSoftInputMode=“adjustPan”(以及所有其他windowSoftInputModes),但它仍然有相同的React。
有没有什么方法可以让布局上升并影响任何东西。

kmbjn2e3

kmbjn2e31#

尝试删除填充recyclerview,它解决了我的问题

2q5ifsrm

2q5ifsrm2#

我还没有尝试过你的代码,但是把你的recyclerview放在scrollview里面可能会解决你的问题。当键盘打开屏幕时,屏幕会滚动并尝试将内容适应屏幕:

<androidx.core.widget.NestedScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_marginTop="20dp"
    android:paddingBottom="10dp"
    android:fillViewport="true"
    android:scrollbars="none"
    app:layout_constraintTop_toBottomOf="@+id/addNewServiceBtn"
    app:layout_constraintBottom_toBottomOf="parent"> 

   <androidx.recyclerview.widget.RecyclerView
       android:id="@+id/serviceRecyclerView"
       android:layout_width="match_parent"
       android:layout_height="match_parent" />

</androidx.core.widget.NestedScrollView>
3phpmpom

3phpmpom3#

解决方案的快速解决方案是将layout.xml的所有视图 Package 到ScrollView中,然后RecyclerView中的视图在键盘关闭后不会重新调整大小。

gpfsuwkq

gpfsuwkq4#

在onBindViewHolder方法的适配器类中使用以下代码

holder.setIsRecyclable(false);
knpiaxh1

knpiaxh15#

只要加上

android:windowSoftInputMode="adjustResize"

android:windowSoftInputMode="adjustPan|adjustResize"

也可以在onCreate中添加这一行

getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE|WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);

相关问题