We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
filterItemsAsync() always checks for a new filter. If filter parameters haven't been changed then filtering will be omitted here:
filterItemsAsync()
private synchronized void filterItemsAsync(@NonNull List<T> unfilteredItems) { // Omitted for brevity if (hasFilter() && hasNewFilter(mFilterEntity)) { //skip when filter is unchanged } }
Steps to reproduce: Let's take a simple situation where each item has a status field called isSent.
isSent
isSent = false
isSent = true
FlexibleAdapter.filterItems()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
filterItemsAsync()
always checks for a new filter. If filter parameters haven't been changed then filtering will be omitted here:Steps to reproduce:
Let's take a simple situation where each item has a status field called
isSent
.isSent = false
isSent = false
should be visibleisSent = true
and the callFlexibleAdapter.filterItems()
The text was updated successfully, but these errors were encountered: