ChipsLayoutManager
ChipsLayoutManager copied to clipboard
Items height issue
How to reproduce:
- Use this in ItemsFragment
private void expand() {
rvTest.getLayoutParams().height = ViewGroup.LayoutParams.WRAP_CONTENT;
rvTest.requestLayout();
}
private void collapse() {
rvTest.getLayoutParams().height = 100;
rvTest.requestLayout();
}
- Call collapse
- Call expand
- Result