如何从 android Gallery::GetView 方法回收位图

发布于 2024-10-17 20:16:49 字数 640 浏览 1 评论 0原文

在 gallery 的 getView 方法中, 我已经下载了位图并设置为 Imageview 并将其返回到框架。 我应该何时何地回收位图? 我不想唤醒系统垃圾收集器来清理位图。

public View getView(int position, View view, ViewGroup parent) {
        ImageView i = new ImageView(mContext); 
        downloadFromWeb("www.blahblah.com", i);
        i.setScaleType(ImageView.ScaleType.FIT_XY);
        i.setLayoutParams(new Gallery.LayoutParams(mDisplayWidth, (mDisplayHeight-100)));
        i.setBackgroundResource(mGalleryItemBackground);
        return i;
    }

public downloadFromWeb(URL url, ImageView i){
        Bitmap bitmap = getBitmapFromWeb(url);
        i.setImageBitmap(bitmap);
  }

In getView method of gallery ,
i had download the bitmap and set to Imageview and return it back to framework.
When and where should i recycle the bitmap ?
I don't want to wake up the system garbage collector to clean up the bitmaps.

public View getView(int position, View view, ViewGroup parent) {
        ImageView i = new ImageView(mContext); 
        downloadFromWeb("www.blahblah.com", i);
        i.setScaleType(ImageView.ScaleType.FIT_XY);
        i.setLayoutParams(new Gallery.LayoutParams(mDisplayWidth, (mDisplayHeight-100)));
        i.setBackgroundResource(mGalleryItemBackground);
        return i;
    }

public downloadFromWeb(URL url, ImageView i){
        Bitmap bitmap = getBitmapFromWeb(url);
        i.setImageBitmap(bitmap);
  }

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

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

发布评论

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

评论(1

漫雪独思 2024-10-24 20:16:49
    You can call bitmap recycle method in onDestory method as shown below

Bitmap mybitmap= null;

@Override
    protected void onDestroy() {
        super.onDestroy();

        if(bm!=null)
        mybitmap.recycle();

    }
    You can call bitmap recycle method in onDestory method as shown below

Bitmap mybitmap= null;

@Override
    protected void onDestroy() {
        super.onDestroy();

        if(bm!=null)
        mybitmap.recycle();

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