码迷,mamicode.com
首页 > 其他好文 > 详细

listview前几个item怎么不停加载

时间:2016-10-07 11:17:36      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

在加载前几个item的时候,listview有个Adapter,里面的getView方法会被调用好几遍。原因可能有两种:

1.listview在布局文件里高度写成了wrap_content

<?xml version="1.0" encoding="utf-8"?>
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="fill_parent"
     android:layout_height="fill_parent"
     android:id="@+id/ll_root"
     android:orientation="vertical" >

<!--  <ImageView
     android:id="@+id/iv_image"
     android:layout_width="match_parent"
     android:layout_height="180dp" 
     android:scaleType="fitXY"/> -->

     <ListView
         android:id="@+id/lv_list"
         android:layout_width="match_parent"
         android:layout_height="wrap_content" >

</ListView>
 
 </LinearLayout>

由于app不知道你这个listview要用多少个item才能撑满全屏,所以它就不停地试,直到满为止。

2.布局文件里没有listview,而是在代码里new出来listview,而且没有指定listview的高度是match_parent

        LinearLayout llRoot = (LinearLayout) findViewById(R.id.ll_root);
        ListView lv = new ListView(this);
        llRoot.addView(lv);
        lv.setAdapter(new BaseAdapter() { 
                               。        
                               。
                               。

 原因跟第一种情况的原因是一样的

listview前几个item怎么不停加载

标签:

原文地址:http://www.cnblogs.com/johnsonwei/p/5935452.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!