ExpandableLayout icon indicating copy to clipboard operation
ExpandableLayout copied to clipboard

defalut is Open,but i what I need is closed...

Open DavidMGT opened this issue 8 years ago • 1 comments

 for (PayDetail payDetail : loanDetails.getRepaymentList()) {
        Section<PayDetail, PayDetail> section = new Section<>();
        section.parent = payDetail;
        section.children.add(payDetail);
        section.expanded = false;
        binding.elLoanList.addSection(section);
        binding.elLoanList.addChild(payDetail, payDetail);

    }.

still is open.

DavidMGT avatar Apr 20 '18 05:04 DavidMGT

for (PayDetail payDetail : loanDetails.getRepaymentList()) {
        Section<PayDetail, PayDetail> section = new Section<>();
        section.parent = payDetail;
        section.children.add(payDetail);
        section.expanded = false;
        binding.elLoanList.addSection(section);
    }

acousticksan avatar Jul 17 '18 09:07 acousticksan