-
Notifications
You must be signed in to change notification settings - Fork 93
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
Optimization with adding list of items #9
Comments
I agree with you here. I don't understand it either. It's just so slow to load tags. But I can see that was 9 months ago and no response. Why even bother... |
:/ I decided to Inherit from TagView to override this method...
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In class TagView in method
addTags(List<Tag> tags)
you doaddTag(item)
;But what are doing here?
After adding of each tag to addTag you draw tags...
Inside drawTags()
first
removeAllViews();
and then
for (Tag item : mTags)
Are you jokking? Why if you are going to remove and redraw all, you do it after adding of each element to inner list?
Sorry guys but it have to be optimized!
The text was updated successfully, but these errors were encountered: