! expandable-listview-hello

折りたたみ可能なリストビューである ExpandableListView のサンプル。

このサンプルではデータを表示するために SimpleExpandableListAdapter を
使用している。

ExpandableListAdapter は以下のような継承関係となっている。

- android.widget.BaseExpandableListAdapter
  - android.widget.SimpleExpandableListAdapter
  - android.widget.CursorTreeAdapter
    - android.widget.ResourceCursorTreeAdapter
      - android.widget.SimpleCursorTreeAdapter

これらのクラスのうち SimpleExpandableListAdapter 以外は抽象クラスであり、
継承して必要なメソッドを実装して利用する必要がある。


