-
Notifications
You must be signed in to change notification settings - Fork 135
New issue
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
效率问题 #10
Comments
Please rephrase your issue in English |
He said that bulk loading data will not be efficiency problem? |
I am observing efficiency problems when loading say 500 elements. This list is in one of 5 fragments, and when opening the fragment with this list, I see some serious memory allocations, as well as unresponsive (a second or two, depending on number of items) UI. |
@frankiesardo correct me if I am wrong, but I guess, the LinearListView component doesn't recycle list-itemviews by design, as RecyclerView or ListView does. So it is bound to have performance issues with many list-items put into the adapter as those views are all created at instance-creation time. |
批量加载数据的话会不会出现效率问题?
The text was updated successfully, but these errors were encountered: