-1

我有列表视图,并且在每一行中都需要一个横向滚动视图,包含 N 个图像,并且只要我开始该活动,它就会不断使我的应用程序崩溃

这是代码

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

    View vi=convertView;
    if(convertView==null){
        vi = inflater.inflate(R.layout.foto_list_row, null);
    }


    TextView title = (TextView)vi.findViewById(R.id.foto_title); // title


    HashMap<String, String> n = new HashMap<String, String>();
    n = data.get(position);
    LinearLayout ll = (LinearLayout) vi.findViewById(R.id.fotoh);
    String var[] = (n.get(FotoView.TAG_ALBUM)).split(",");
    ImageView iv = new ImageView(activity.getApplicationContext());
    for(int a=0;a<var.length;a++){
        String t = var[a];
        if(t == "null"){
            t.replace("null", "");
        }else{
            //tv.setText(t);
            imageLoader.DisplayImage(t,iv);
            ll.addView(iv);
        }
    }


    // Setting all values in listview
    title.setText(n.get(FotoView.TAG_TITLE));
    return vi;
}
4

2 回答 2

1

我认为您可能想要的是在 xml 布局文件中拥有一个画廊,并且该文件将用作 ListView 行,您需要在 getView() 中为画廊创建另一个适配器,您需要这样做。

public View getView(int position, View convertView, ViewGroup parent)
{
    Gallery gallery;
    if (convertView == null)
        gallery == inflater.inflate(R.layout.gallery_row, parent, false);
    else 
        gallery == (Gallery) convertView;

    String[] images = data.get(position).split(",");
    GalleryAdapter gAdapter = new GalleryAdapter(images);
    gallery.setAdapter(gAdapter);

    return gallery;

}

我认为有了这个你可以有一个基本的想法,你应该做什么。

于 2012-09-11T20:01:17.043 回答
0

只需在 google 中搜索“listview 的世界”,您就会得到答案如何在 android 中为列表类型创建自定义适配器

于 2012-09-11T19:44:51.503 回答