使用LazyList问题

时间:2011-09-05 11:33:39

标签: android arrays string lazy-loading

我已经使用惰性列表concept实现了示例应用程序。我希望将所有字符串数组值分配给LazyAdapter(extends BaseAdapter)类的文本视图

我使用过这个课程如下

 public class LazyAdapter extends BaseAdapter {

private Activity activity;
private String[] data;
private static LayoutInflater inflater=null;
public ImageLoader imageLoader;



public LazyAdapter(Activity a, String[] d) {
    activity = a;
    data=d;
    inflater = (LayoutInflater)activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    imageLoader=new ImageLoader(activity.getApplicationContext());
}

public int getCount() {
    return data.length;
}

public Object getItem(int position) {
    return position;
}

public long getItemId(int position) {
    return position;
}

public View getView(int position, View convertView, ViewGroup parent) {
    View vi=convertView;


    if(convertView==null)
        vi = inflater.inflate(R.layout.item, null);



         String texts[]={"hai","how are you","hello","oyeeee"};

        //i would like to set this texts[] values to TextView

        for(int i=0;i< texts.size();i++)
        { 
         TextView text=(TextView)vi.findViewById(R.id.text);;
         ImageView image=(ImageView)vi.findViewById(R.id.image);
         text.setText("item "+texts[i]);
         imageLoader.DisplayImage(data[position], activity, image);


           }
    return vi;

       }
   }

这里我只能显示oyeee。我可以将所有值视为列表

这里如何显示列表中的所有字符串数组值,就像我们显示item0,item1,item2,....等的懒惰列表一样,

2 个答案:

答案 0 :(得分:2)

问题是因为您为每个正在填充的项目使用了for循环。在这种情况下,因为对于每个视图,你的for循环被执行,显然它是数组中的最后一个元素,毫无疑问“oyeeee”被打印在所有行中。

现在您需要做的是,您可以在活动的某个地方全局提供数组,并像这样更改 getView()中的代码,

//数组的全局声明

 String texts[]={"hai","how are you","hello","oyeeee"};
public View getView(int position, View convertView, ViewGroup parent) {
View vi=convertView;


if(convertView==null)
    vi = inflater.inflate(R.layout.item, null);


     TextView text=(TextView)vi.findViewById(R.id.text);
     ImageView image=(ImageView)vi.findViewById(R.id.image);
     text.setText("item "+texts[postion]);
     imageLoader.DisplayImage(data[position], activity, image);


       }
return vi;

   }

}

这就是全部。

答案 1 :(得分:1)

删除GetView代码&amp;在GetView函数中编写以下代码。

String texts[]={"hai","how are you","hello","oyeeee"};
View vi = convertView;
        if (convertView == null) {
            vi = inflater.inflate(R.layout.item, null);
            image = (ImageView) vi.findViewById(R.id.imgview);
            txtviewtitle=(TextView)vi.findViewById(R.id.txtviewtitle);
        }
        txtviewtitle.setText(texts[position]);
        imageLoader.DisplayImage(data[position], activity, image);

        return vi;