Android Tree View

This is a simple to use Tree implementation for Android. We provide this, because there is no such thing from Google. It is fully customizable, but for simple use cases you don't need custom code except for creating a structure of TreeObjects like shown here.
   TreeObject root = new TreeObject("Root");
   TreeObject child = new TreeObject("Child 1");
   root.addChild(child);
   child = new TreeObject("Child 2");
   root.addChild(child);
   TreeObject subchild = new TreeObject("Child 2.1");
   child.addChild(subchild);
For more information have al look on out getting started page.

The library is free for commercial and non commercial usage.