Fedor 的画廊延迟加载

发布于 2024-12-03 06:46:27 字数 564 浏览 2 评论 0原文

我正在使用 Fedor 的延迟加载,但我似乎无法调整它来填充图库而不是列表视图。我的主要问题似乎是不必膨胀单独的布局。如何将图像结果直接传递到图库?

这是我当前的 getview,它不起作用

 public View getView(int position, View convertView, ViewGroup parent) {
    View vi=convertView;
    if(convertView==null){
    ImageView image= new ImageView(context);
    image.setLayoutParams(new Gallery.LayoutParams(150, 100));
    image.setScaleType(ImageView.ScaleType.FIT_XY);
    imageLoader.DisplayImage(data[position], activity, image);
  }
    return vi;
  }

,错误是图库中的空指针异常。

关于适当的调整有什么想法吗?

谢谢

I am using Fedor's Lazy Load, but I can't seem to adapt it to populate a gallery instead of a listview. My main problem seems to be to do with not having to inflate a separate layout. How do I pass the image results straight to the gallery?

This is my current getview which doesnt work

 public View getView(int position, View convertView, ViewGroup parent) {
    View vi=convertView;
    if(convertView==null){
    ImageView image= new ImageView(context);
    image.setLayoutParams(new Gallery.LayoutParams(150, 100));
    image.setScaleType(ImageView.ScaleType.FIT_XY);
    imageLoader.DisplayImage(data[position], activity, image);
  }
    return vi;
  }

and the error is a nullpointerexception within the gallery.

Any ideas on the appropriate adaptations?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

老街孤人 2024-12-10 06:46:27

我使用以下方法让它工作:

 public View getView(int position, View convertView, ViewGroup parent) {
    View vi=convertView;
    if(convertView==null){
        vi = inflater.inflate(R.layout.galitem, null);
    ImageView image=(ImageView)vi.findViewById(R.id.galimage);
    imageLoader.DisplayImage(data[position], activity, image);
    }

    return vi;

}

我在其他地方设置了参数。

I got it to work using the following:

 public View getView(int position, View convertView, ViewGroup parent) {
    View vi=convertView;
    if(convertView==null){
        vi = inflater.inflate(R.layout.galitem, null);
    ImageView image=(ImageView)vi.findViewById(R.id.galimage);
    imageLoader.DisplayImage(data[position], activity, image);
    }

    return vi;

}

I set the parameters elsewhere.

花桑 2024-12-10 06:46:27

试试这个:

public View getView(int position, View convertView, ViewGroup parent) {
    ImageView imgView;
    if (convertView == null) {
        imgView = new ImageView(context);
        imgView.setLayoutParams(new Gallery.LayoutParams(150, 100));
        imgView.setScaleType(ImageView.ScaleType.FIT_XY);
    } else {
        imgView = convertView;
    }

    imageLoader.DisplayImage(data[position], activity, imgView);

    return imgView;
}

Try this:

public View getView(int position, View convertView, ViewGroup parent) {
    ImageView imgView;
    if (convertView == null) {
        imgView = new ImageView(context);
        imgView.setLayoutParams(new Gallery.LayoutParams(150, 100));
        imgView.setScaleType(ImageView.ScaleType.FIT_XY);
    } else {
        imgView = convertView;
    }

    imageLoader.DisplayImage(data[position], activity, imgView);

    return imgView;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文