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" />