Android/ListView/カスタム/getViewが複数回呼ばれる問題
ナビゲーションに移動
検索に移動
getViewが複数回呼ばれる問題
ListViewのlayout_heightがmatch_parent以外(wrap_contentとかになっている)と5回呼ばれてしまってました。 これを
<ListView
android:id="@+id/sample_listview"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
こうすると解決
<ListView
android:id="@+id/sample_listview"
android:layout_width="match_parent"
android:layout_height="match_parent" />