Is there a GUI item to visualize a dir structure (treemap)
in android?
Thanks, Leslie
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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