Resolve search scroll hightlight issue

After getting the index of the first item that should be highlighted, Section decorator should not assume getChildAt(index) will return item at position. Instead use findViewHolderForAdapterPosition.

Bug: 170665892
Change-Id: Id81d021bde8868184013e8d51e49af7842b64125
This commit is contained in:
Samuel Fufa
2020-11-09 16:30:07 -06:00
parent a204de7d12
commit 3116dc918f
3 changed files with 4 additions and 3 deletions

View File

@@ -184,8 +184,7 @@ public class AllAppsGridAdapter extends
|| viewType == VIEW_TYPE_SEARCH_THUMBNAIL
|| viewType == VIEW_TYPE_SEARCH_ICON_ROW
|| viewType == VIEW_TYPE_SEARCH_ICON
|| viewType == VIEW_TYPE_SEARCH_SUGGEST
|| viewType == VIEW_TYPE_SEARCH_WIDGET_LIVE;
|| viewType == VIEW_TYPE_SEARCH_SUGGEST;
}
}