我有一个回收站
<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。
有没有什么方法可以让布局上升并影响任何东西。
5条答案
按热度按时间kmbjn2e31#
尝试删除填充recyclerview,它解决了我的问题
2q5ifsrm2#
我还没有尝试过你的代码,但是把你的recyclerview放在scrollview里面可能会解决你的问题。当键盘打开屏幕时,屏幕会滚动并尝试将内容适应屏幕:
3phpmpom3#
解决方案的快速解决方案是将layout.xml的所有视图 Package 到ScrollView中,然后RecyclerView中的视图在键盘关闭后不会重新调整大小。
gpfsuwkq4#
在onBindViewHolder方法的适配器类中使用以下代码
knpiaxh15#
只要加上
或
也可以在onCreate中添加这一行