解决方案 »

  1.   

    是的,每次if (convert == null)的结果都为真,执行大约花费10毫秒,几十条记录就明显感觉卡了
      

  2.   

     convert = LayoutInflater.from(c).inflate(R.layout.item_call, p,false); 试下
      

  3.   

      convert.setLayoutParams(new AbsListView.LayoutParams(-1, height)) 去掉
    static class ViewHolder {
        TextView tvname, tvnum, tvdate;
        ImageView itype;

    static 去掉
      

  4.   

    为什么viewholder不定义成内部类