ChipsLayoutManager icon indicating copy to clipboard operation
ChipsLayoutManager copied to clipboard

Items height issue

Open Nook2007 opened this issue 9 years ago • 0 comments

How to reproduce:

  1. 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();
    }
  1. Call collapse
  2. Call expand
  3. Result t5bzni4

Nook2007 avatar Jan 24 '17 16:01 Nook2007