我有一个零碎块,具有循环器观和布局,其中载有底层的ed。 编辑文本的精度为50dp,最高为100dp。 在回收人看来,如果我把最后一件物品投入使用,我就想把回收人的观点推向上,而不是从回收人的角度推论的ed。 而且,当我点击ed器文本时,循环器的观点没有显示最后的信息。
https://jmp.sh/7ifSfwxG”rel=“nofollow noreferer”> Gif of problem
`The recycler view`
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rvChatMessage"
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintBottom_toTopOf="@+id/constraintLayout6"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
`Layout that contains the edit text`
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/constraintLayout6"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="8dp"
android:paddingBottom="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/rvChatMessage">
<ImageView
android:id="@+id/imageView8"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_marginStart="8dp"
android:src="@drawable/profilepic"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent" />
<ImageView
android:id="@+id/imageView11"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_marginEnd="8dp"
android:src="@drawable/send_24px"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
<EditText
android:id="@+id/editTextTextMultiLine"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
android:background="@drawable/et_box"
android:ems="10"
android:hint="Message @john_doe"
android:inputType="textMultiLine"
android:maxHeight="100dp"
android:minHeight="50dp"
android:paddingStart="4dp"
android:paddingEnd="4dp"
android:scrollbars="vertical"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@+id/imageView11"
app:layout_constraintStart_toEndOf="@+id/imageView8"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
编辑文本的制约因素已经受制于循环器的观点。