> does anybody knows how to implement a treeView in android? > > I am reading about ExpandableListView and it's not exactly what I > need, as it seems it has only 2 levels... > > I need a proper treeView that I can add items to in runtime
There is no built-in tree-view widget in Android, beyond ExpandableListView. In part, I suspect that is because trying to implement a finger-friendly tree in a small screen size would be difficult. However, you are welcome to examine the source code for ExpandableListView and take a shot at making a tree view widget. -- Mark Murphy (a Commons Guy) http://commonsware.com _The Busy Coder's Guide to Android Development_ Version 2.0 Available! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

