Is there a way to dynamically create ExpandableCardViews? Something like:
ExpandableCardView ecv = new ExpandableCardView(this);
ecv.setInnerView(...);
ecv.setTitleTextColor(...);
// etc
I've tinkered a bit with this but couldn't find a way to programmatically set attributes for it.
Thanks!