Android ListView GetView Called Too Much Times

silsly
1 min readMay 17, 2018

Dont use your ListView height = “wrap_content” . Just change your listView height equals to fill_parent or match_parent and try it again.

<ListView
android:id="@+id/lv"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:dividerHeight="5dp"
android:divider="@null"></ListView>
Before -> Multiple Looping
After -> Normal Looping

--

--