-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
数据是一级一级请求 #19
Comments
点击父节点再去拉取子节点的数据吗?不是很明确你的需求,如果可以的话,描述详细一点 |
嗯,点击父节点请求子节点的数据,我看了下,demo里数据是一次性加载的 |
直接把加载好的数据塞到父节点下面然后 treeView.expandNode() 就好了 |
节点的点击事件怎么暴露出来 |
点击事件我已近拿到了,数据怎么一级一级请求还是不太明白,请大佬能详细说下吗 |
在点击事件里面请求数据啊 还是不清楚你的场景 |
能加QQ吗,谢谢 |
业务逻辑是这样,点击省去请求省下面的市,点击市去请求省下面的县。地址选择那样,数据量大,只能一层一层的请求,关于数据适配问题怎么解决 |
数据请求回来了塞进去然后展开不就好了吗?你的问题是什么 |
楼主你好,这边也是想实现一级一级请求 |
treeView.getAdapter().setOnItemClickListener(new TreeViewAdapter.OnItemClickListener() { |
那请问,您是怎么把子列表的数据塞进去的呢 |
我这边想的是点击的时候把position传过来然后再处理,但是后来发现position传过来的是错乱的 |
parentNode.addChild() |
看评论就懂了,谢谢个位 |
您好,请问下节点的点击事件怎样拿到呢 |
treeView.getAdapter().setOnItemClickListener() @Archer-Lin |
treeView对象没getAdapter()方法,只有getAllNodes()、getSelectedNodes()、getView()这3个方法,你是不是有封装过呢 @caobin821651400 |
你在TreeView中把adater返回回来就行了 public Adapter getAdapter(){return @@@@mAdapter} @Archer-Lin |
如果数据是一级一级请求的呢,展开收缩,全选全不选,
The text was updated successfully, but these errors were encountered: