! listview-simple-adapter-with-viewbinder 

SimpleAdapter を使って ListView にデータを表示するサンプル。
ListActivity を使った ListView のデータ追加機能付きサンプル。

SimpleAdapter は List<Map<String, String>> をデータとして表示できる。

SimpleAdapter#setViewBinder(ViewBinder binder) を使って
をデータ配列の内容と異なる値を表示することができる。
これにより文字列データを ImageView にマッピングするなども可能となる。

このサンプルでは"0"と"1"として格納されている性別データを "Male" "Female" という
テキストに変換して表示している。

