- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 Activity,它有一个名为 MainFragment 的 fragment ,它有一个 ViewPager2 来显示一些 fragment 。其中之一是 SearchFragment。 SearchFragment 有一个带有 TextWatcher 的 EditText,在文本更改时,会调用 API 来获取建议。当我将这些建议设置为显示在 EditText 正下方的 RecyclerView 时,它不会更新,除非我触摸 RecyclerView .
我试过运行一个处理程序来调用 API 并更新 RecyclerView 而不让 EditText 获得焦点,并且成功了。当 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>
最佳答案
ViewPager2 库有问题。
我使用的是 "androidx.viewpager2:viewpager2:1.0.0-beta05"
,它有一个 Bug,如果 EditText 处于焦点,会导致 View Elements 失去焦点。
已更新为 "androidx.viewpager2:viewpager2:1.0.0-rc01"
,问题现已解决。
关于android - 当 EditText 处于焦点时无法在 RecyclerView 上通知 DataSetChanged,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58799580/
我的 Spinner 中有 5 个项目。我点击一个触发的刷新按钮API 调用,以 Spinner 上的刷新结束。 我立即点击 Spinner 将其打开。 API 调用在 Spinner 打开时结束,并
单击每个项目后,我必须更改 ListView 中的数据 任何人都可以告诉我如何在 ListView 中单击项目后通知更改。我没有使用基本适配器。我使用的是自定义适配器。任何帮助都将非常有用。检查我的代
我有一个 Activity,它有一个名为 MainFragment 的 fragment ,它有一个 ViewPager2 来显示一些 fragment 。其中之一是 SearchFragment。
我是一名优秀的程序员,十分优秀!