Android/ListView/カスタム/getViewが複数回呼ばれる問題
提供: 初心者エンジニアの簡易メモ
2018年12月14日 (金) 14:49時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「 ==getViewが複数回呼ばれる問題== ListViewのlayout_heightがmatch_parent以外(wrap_contentとかになっている)と5回呼ばれてしまってました...」)
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" />