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
I made some tests on my app (which is already using with success the original pull-to-refresh solution) and it's catastrophic when the list is a little longer (> 60 items).
It freezed the app when i dynamically changed the list content (due to the DataSetObserver that made undoubtedly the refresh slower).
With more than 60 items, this code snippet execution takes like forever :
adapter.clear();
for (Item i : items)
{
adapter.add(i);
}
adapter.notifyDataSetChanged();
The text was updated successfully, but these errors were encountered:
Hi,
I made some tests on my app (which is already using with success the original pull-to-refresh solution) and it's catastrophic when the list is a little longer (> 60 items).
It freezed the app when i dynamically changed the list content (due to the DataSetObserver that made undoubtedly the refresh slower).
With more than 60 items, this code snippet execution takes like forever :
The text was updated successfully, but these errors were encountered: