ExpandableLayout
ExpandableLayout copied to clipboard
defalut is Open,but i what I need is closed...
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.
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);
}