gpt4 book ai didi

android - 在 recyclerview 中提交列表后强制编辑文本以移除焦点

转载 作者:行者123 更新时间:2023-12-04 13:25:52 27 4
gpt4 key购买 nike

我有一个具有多个编辑文本的回收站 View 。在向 recyclerview 添加项目时,焦点始终转移到屏幕的第一个 editText。
我已经将 android:focusable="true"和 android:focusableInTouchMode="true"与编辑文本的父布局一起使用。
下面是我的 fragment 的 XML 代码:

 <androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/layoutPickupLocation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:focusable="true"
android:focusableInTouchMode="true"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">

<ImageView
android:id="@+id/iv_origin"
android:layout_width="15dp"
android:layout_height="15dp"
android:layout_marginStart="8dp"
android:src="@drawable/ic_origin_icon"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@+id/et_origin"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<EditText
android:id="@+id/et_origin"
style="@style/textGreyLight"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="6dp"
android:layout_marginEnd="@dimen/sixteen_dp"
android:background="@null"
android:imeOptions="actionDone"
tools:hint="Enter Pickup Location"
android:singleLine="true"
android:ellipsize="end"
android:textColor="@color/warm_grey"
android:textSize="14sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/iv_origin"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>

<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv_places"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:overScrollMode="never"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/layoutPickupLocation" />
</androidx.constraintlayout.widget.ConstraintLayout>
这就是我将项目提交到我的 RecyclerView 列表的方式:
 private fun submitSearchResult(it: List<MultipleLocation>?) {
mLocationSearchAdapter.submitList(it?.map {
DataItemLocationSearchListing.DefaultItemListing(
it
)
})
rvSearchLocation.post(Runnable { mLocationSearchAdapter.notifyDataSetChanged() })
}
任何形式的帮助将不胜感激。

最佳答案

请更换您的notifyDataSetChanged()notifyItemChanged(positionOfYourList) .

关于android - 在 recyclerview 中提交列表后强制编辑文本以移除焦点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68637663/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com