原理ListView's Item + paddingLeft(Level)+expand include
系统中的数据Bean-->Node
系统中的数据Bean-->Node
2018-04-09
正确的插入数据的方法应该是先判断他是否有子节点,如果有子节点就找到第一个子节点的位置插入,如果不是就表示是叶子节点,直接插入到它的后面。
int iloc = 0;
if(node.getChild().size()!=0){
iloc = mAllNodes.indexOf(node.getChild().get(0));
}else{
iloc = index+1;
}
int iloc = 0;
if(node.getChild().size()!=0){
iloc = mAllNodes.indexOf(node.getChild().get(0));
}else{
iloc = index+1;
}
2017-02-23