Android 目录的树状图视觉效果?
是否有一个 GUI 项目可以可视化目录结构(树形图) 在安卓中?
谢谢,莱斯利
Is there a GUI item to visualize a dir structure (treemap)
in android?
Thanks, Leslie
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ExpandableListView 是 Android 平台上最接近树形结构的组件但它只会显示一层深度。
我建议您阅读Google 论坛上的此帖子来了解原因在android中并不真正存在。基本上,在触摸界面上使用并不容易。
我还建议您使用 ExpandableListView,其顶部带有某种面包屑来显示 ExpandableListView 公开的实际节点的路径。
问候, 斯特凡
ExpandableListView is the closest component you can find on Android platform for a tree structure but it will only show one level of depth.
I suggest you read this thread on google groups to understand why it doesn't really exist in android. Basically, it would not be easy to use on a touch interface.
I can also suggest you to use a ExpandableListView with, at its top, some kind of breadcrumb to display the path of the actual node exposed by the ExpandableListView.
Regards, Stéphane