我有一个活动,有一个名为MainFragment的片段,其中有一个ViewPager2以显示一些片段。其中之一是SearchFragment。 SearchFragment具有带有TextWatcher的EditText,更改文本后,将进行API调用以获取建议。当我将这些建议设置为显示在EditText下方的RecyclerView时,除非我触摸RecyclerView。否则它不会得到更新。
我已经尝试运行处理程序以进行API调用并更新RecyclerView
,而没有让EditText获得Focus,它起作用了。当EditText未聚焦时,RecyclerView更新数据就很好。<androidx.constraintlayout.widget.ConstraintLayout 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:id="@+id/search_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/almostBlack"
tools:context=".presentation.ui.modules.search.view.SearchFragment">
<com.vishal.presentation.ui.common.custom.ClearableAutoCompleteTextView
android:id="@+id/etSearchText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/transparent"
android:ellipsize="end"
android:focusable="true"
android:fontFamily="@font/sfprotext_regular"
android:gravity="center|start"
android:hint="@string/search_hint"
android:imeOptions="actionSearch"
android:inputType="text"
android:maxLength="50"
android:maxLines="1"
android:padding="12dp"
android:singleLine="true"
android:textColor="@color/white"
android:textColorHint="@color/veryLightPink"
android:textSize="16sp"
app:clearIconDrawWhenFocused="true"
app:clearIconDrawable="@drawable/ic_close_white_24dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/autoCompleteSuggestions"
android:layout_width="match_parent"
android:layout_height="0dp"
android:background="@color/almostBlack"
android:visibility="gone"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/etSearchText" />
</androidx.constraintlayout.widget.ConstraintLayout>
我有一个Activity,其中有一个名为MainFragment的片段,该片段具有一个ViewPager2以显示一些片段。其中之一是SearchFragment。 SearchFragment在文本上有一个带有TextWatcher的EditText ...
ViewPager2库出现问题。