facebook twitter hatena line email

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

https://qiita.com/equines/items/ab53b706cf10514a1da5