如何对位图向量进行弱引用?
假设我有这个载体:
private Bitmap[] scaledBitmap = new Bitmap[9];
我可以很容易地将孔向量放在这样的弱引用中:
private WeakReference <Bitmap[]> scaledBitmapW;
this.scaledBitmapW = new WeakReference <Bitmap[]> (scaledBitmap);
但后来在我缩放位图并返回它们的方法中,我怎么能检索 来自弱引用的每个位图?在我想到弱引用之前它看起来像这样:
scaledBitmap[i] = Bitmap.createScaledBitmap(bm.get(), reqW[i], reqH[i], true);
如何对所有九个位图使用 this.scaledBitmapW.get()?