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
Nice work, I will definitely use this lib.
Did you consider animating deletion / addition of single chip? I tried using animateLayoutChanges in xml, but it doesn't really work as expected.
The text was updated successfully, but these errors were encountered:
This is a nice suggestion, I think this isn't working because of the way ChipView is rendering his content :
public void refresh() { if (mAdapter != null) { removeAllViews(); for (int i = 0; i < mAdapter.count(); i++) { View view = mAdapter.getView(this, i); if (view != null) { if (mListener != null) { view.setClickable(true); view.setFocusable(true); } addView(view); } } invalidate(); } }
For each change (adding or removing), the ChipView is refreshing all his content I'll see what I can do
Sorry, something went wrong.
No branches or pull requests
Nice work, I will definitely use this lib.
Did you consider animating deletion / addition of single chip? I tried using animateLayoutChanges in xml, but it doesn't really work as expected.
The text was updated successfully, but these errors were encountered: