ListView多次调用getView方法

来源:互联网 发布:brew install php fpm 编辑:程序博客网 时间:2024/06/09 23:59

问题描述:
ListView多次调用getView方法.

解决办法:
不要设置android:layout_height="wrap_content"
而应设置android:layout_height="fill_parent"

即:
<ListView
     android:id="@+id/listView"
     android:layout_width="fill_parent"
     android:layout_height="fill_parent"
>

原创粉丝点击