AndroidTreeView icon indicating copy to clipboard operation
AndroidTreeView copied to clipboard

When I call collapseNode(TreeNode node), I want to collapse node's subnodes sometimes.

Open LiuJQ opened this issue 9 years ago • 2 comments

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 !

LiuJQ avatar Mar 25 '16 07:03 LiuJQ

I have a similar requirement.

jangdmanish avatar Apr 22 '16 14:04 jangdmanish

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

niwinnm avatar Sep 15 '16 11:09 niwinnm