使用RecyclerView 和ListAdapter 修復ForegroundColorSpan 搜尋文字突出顯示
使用問題使用問題>突出顯示搜尋文字使用ForegroundColorSpan 的Color.GREEN 與使用 ListAdapter 的 RecyclerView 不一致。清單中有些項目沒有高亮,或滾動後才高亮。
原因ListAdapter 使用非同步更新,onBindViewHolder() 時資料集可能尚未準備好稱為。因此,searchString 無法正確套用突出顯示。
解更新 Card 模型以包含 searchString 屬性。在過濾期間,使用更新的 searchString 建立一個新的 Card 實例。這將觸發 onBindViewHolder() 方法並正確地應用突出顯示。
以上是為什麼 RecyclerView 和 ListAdapter 中 ForegroundColorSpan 搜尋文字高亮不一致?的詳細內容。更多資訊請關注PHP中文網其他相關文章!