AndroidTreeView
AndroidTreeView copied to clipboard
When I call collapseNode(TreeNode node), I want to collapse node's subnodes sometimes.
I have a requirement that if I want to collapse All children in a TreeNode but I can realize.
I call this method:
public void collapseNode(TreeNode node) { collapseNode(node, false); }
as we can see, the parameter "includeSubnodes" is false even I can't change it !
I have a similar requirement.
Just in case, if you still have this requirement. I have forked and added an additional function named: collapseNodeWithSubnodes
You could get it here: https://github.com/vajro/AndroidTreeView