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