You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After entering a filter to my list which removes all views, I hit the following exception:
Attempt to invoke interface method 'void eu.davidea.flexibleadapter.FlexibleAdapter$OnUpdateListener.onUpdateEmptyView(int)' on a null object reference
I believe this is just an issue of operator precedence; we need to add parentheses around the or statement here:
Thanks, yes it looks like operator precedence, missing a parenthesis. However as you already know that part has been completely modified in experiments branch. I will fix for current SNAPSHOT release.
After entering a filter to my list which removes all views, I hit the following exception:
Attempt to invoke interface method 'void eu.davidea.flexibleadapter.FlexibleAdapter$OnUpdateListener.onUpdateEmptyView(int)' on a null object reference
I believe this is just an issue of operator precedence; we need to add parentheses around the or statement here:
If the last condition is true, we proceed even if the listener is null. For now I'll sidestep it by providing a listener.
The text was updated successfully, but these errors were encountered: