Android管理Bitmap的內(nèi)存使用

2018-08-02 17:35 更新

編寫:kesenhoo - 原文:http://developer.android.com/training/displaying-bitmaps/manage-memory.html

這節(jié)課將作為緩存Bitmaps課程的進(jìn)一步延伸。為了優(yōu)化垃圾回收機(jī)制與Bitmap的重用,我們還有一些特定的事情可以做。 同時(shí)根據(jù)Android的不同版本,推薦的策略會(huì)有所差異。DisplayingBitmaps的示例程序會(huì)演示如何設(shè)計(jì)我們的程序,使得它能夠在不同的Android平臺(tái)上高效地運(yùn)行.

為了給這節(jié)課奠定基礎(chǔ),我們首先要知道Android管理Bitmap內(nèi)存使用的演變進(jìn)程:

  • 在Android 2.2 (API level 8)以及之前,當(dāng)垃圾回收發(fā)生時(shí),應(yīng)用的線程是會(huì)被暫停的,這會(huì)導(dǎo)致一個(gè)延遲滯后,并降低系統(tǒng)效率。 從Android 2.3開(kāi)始,添加了并發(fā)垃圾回收的機(jī)制, 這意味著在一個(gè)Bitmap不再被引用之后,它所占用的內(nèi)存會(huì)被立即回收。
  • 在Android 2.3.3 (API level 10)以及之前, 一個(gè)Bitmap的像素級(jí)數(shù)據(jù)(pixel data)是存放在Native內(nèi)存空間中的。 這些數(shù)據(jù)與Bitmap本身是隔離的,Bitmap本身被存放在Dalvik堆中。我們無(wú)法預(yù)測(cè)在Native內(nèi)存中的像素級(jí)數(shù)據(jù)何時(shí)會(huì)被釋放,這意味著程序容易超過(guò)它的內(nèi)存限制并且崩潰。 自Android 3.0 (API Level 11)開(kāi)始, 像素級(jí)數(shù)據(jù)則是與Bitmap本身一起存放在Dalvik堆中。

下面會(huì)介紹如何在不同的Android版本上優(yōu)化Bitmap內(nèi)存使用。

管理Android 2.3.3及以下版本的內(nèi)存使用

在Android 2.3.3 (API level 10) 以及更低版本上,推薦使用recycle()方法。 如果在應(yīng)用中顯示了大量的Bitmap數(shù)據(jù),我們很可能會(huì)遇到OutOfMemoryError的錯(cuò)誤。 recycle()方法可以使得程序更快的釋放內(nèi)存。

Caution:只有當(dāng)我們確定這個(gè)Bitmap不再需要用到的時(shí)候才應(yīng)該使用recycle()。在執(zhí)行recycle()方法之后,如果嘗試?yán)L制這個(gè)Bitmap, 我們將得到"Canvas: trying to use a recycled bitmap"的錯(cuò)誤提示。

下面的代碼片段演示了使用recycle()的例子。它使用了引用計(jì)數(shù)的方法(mDisplayRefCount 與 mCacheRefCount)來(lái)追蹤一個(gè)Bitmap目前是否有被顯示或者是在緩存中。并且在下面列舉的條件滿足時(shí),回收Bitmap:

  • mDisplayRefCount 與 mCacheRefCount 的引用計(jì)數(shù)均為 0;
  • bitmap不為null, 并且它還沒(méi)有被回收。
private int mCacheRefCount = 0;
private int mDisplayRefCount = 0;
...
// Notify the drawable that the displayed state has changed.
// Keep a count to determine when the drawable is no longer displayed.
public void setIsDisplayed(boolean isDisplayed) {
    synchronized (this) {
        if (isDisplayed) {
            mDisplayRefCount++;
            mHasBeenDisplayed = true;
        } else {
            mDisplayRefCount--;
        }
    }
    // Check to see if recycle() can be called.
    checkState();
}

// Notify the drawable that the cache state has changed.
// Keep a count to determine when the drawable is no longer being cached.
public void setIsCached(boolean isCached) {
    synchronized (this) {
        if (isCached) {
            mCacheRefCount++;
        } else {
            mCacheRefCount--;
        }
    }
    // Check to see if recycle() can be called.
    checkState();
}

private synchronized void checkState() {
    // If the drawable cache and display ref counts = 0, and this drawable
    // has been displayed, then recycle.
    if (mCacheRefCount <= 0 && mDisplayRefCount <= 0 && mHasBeenDisplayed
            && hasValidBitmap()) {
        getBitmap().recycle();
    }
}

private synchronized boolean hasValidBitmap() {
    Bitmap bitmap = getBitmap();
    return bitmap != null && !bitmap.isRecycled();
}

管理Android 3.0及其以上版本的內(nèi)存

從Android 3.0 (API Level 11)開(kāi)始,引進(jìn)了BitmapFactory.Options.inBitmap字段。 如果使用了這個(gè)設(shè)置字段,decode方法會(huì)在加載Bitmap數(shù)據(jù)的時(shí)候去重用已經(jīng)存在的Bitmap。這意味著B(niǎo)itmap的內(nèi)存是被重新利用的,這樣可以提升性能,并且減少了內(nèi)存的分配與回收。然而,使用inBitmap有一些限制,特別是在Android 4.4 (API level 19)之前,只有同等大小的位圖才可以被重用。詳情請(qǐng)查看inBitmap文檔。

保存Bitmap供以后使用

下面演示了如何將一個(gè)已經(jīng)存在的Bitmap存放起來(lái)以便后續(xù)使用。當(dāng)一個(gè)應(yīng)用運(yùn)行在Android 3.0或者更高的平臺(tái)上并且Bitmap從LruCache中移除時(shí),Bitmap的一個(gè)軟引用會(huì)被存放在Hashset中,這樣便于之后可能被inBitmap重用:

Set<SoftReference<Bitmap>> mReusableBitmaps;
private LruCache<String, BitmapDrawable> mMemoryCache;

// If you're running on Honeycomb or newer, create a
// synchronized HashSet of references to reusable bitmaps.
if (Utils.hasHoneycomb()) {
    mReusableBitmaps =
            Collections.synchronizedSet(new HashSet<SoftReference<Bitmap>>());
}

mMemoryCache = new LruCache<String, BitmapDrawable>(mCacheParams.memCacheSize) {

    // Notify the removed entry that is no longer being cached.
    @Override
    protected void entryRemoved(boolean evicted, String key,
            BitmapDrawable oldValue, BitmapDrawable newValue) {
        if (RecyclingBitmapDrawable.class.isInstance(oldValue)) {
            // The removed entry is a recycling drawable, so notify it
            // that it has been removed from the memory cache.
            ((RecyclingBitmapDrawable) oldValue).setIsCached(false);
        } else {
            // The removed entry is a standard BitmapDrawable.
            if (Utils.hasHoneycomb()) {
                // We're running on Honeycomb or later, so add the bitmap
                // to a SoftReference set for possible use with inBitmap later.
                mReusableBitmaps.add
                        (new SoftReference<Bitmap>(oldValue.getBitmap()));
            }
        }
    }
....
}

使用已經(jīng)存在的Bitmap

在運(yùn)行的程序中,decode方法會(huì)檢查看是否存在可重用的Bitmap。 例如:

public static Bitmap decodeSampledBitmapFromFile(String filename,
        int reqWidth, int reqHeight, ImageCache cache) {

    final BitmapFactory.Options options = new BitmapFactory.Options();
    ...
    BitmapFactory.decodeFile(filename, options);
    ...

    // If we're running on Honeycomb or newer, try to use inBitmap.
    if (Utils.hasHoneycomb()) {
        addInBitmapOptions(options, cache);
    }
    ...
    return BitmapFactory.decodeFile(filename, options);
}

下面的代碼是上述代碼片段中,addInBitmapOptions()方法的具體實(shí)現(xiàn)。 它會(huì)為inBitmap查找一個(gè)已經(jīng)存在的Bitmap,并將它設(shè)置為inBitmap的值。 注意這個(gè)方法只有在找到合適且可重用的Bitmap時(shí)才會(huì)賦值給inBitmap(我們需要在賦值之前進(jìn)行檢查):

private static void addInBitmapOptions(BitmapFactory.Options options,
        ImageCache cache) {
    // inBitmap only works with mutable bitmaps, so force the decoder to
    // return mutable bitmaps.
    options.inMutable = true;

    if (cache != null) {
        // Try to find a bitmap to use for inBitmap.
        Bitmap inBitmap = cache.getBitmapFromReusableSet(options);

        if (inBitmap != null) {
            // If a suitable bitmap has been found, set it as the value of
            // inBitmap.
            options.inBitmap = inBitmap;
        }
    }
}

// This method iterates through the reusable bitmaps, looking for one
// to use for inBitmap:
protected Bitmap getBitmapFromReusableSet(BitmapFactory.Options options) {
        Bitmap bitmap = null;

    if (mReusableBitmaps != null && !mReusableBitmaps.isEmpty()) {
        synchronized (mReusableBitmaps) {
            final Iterator<SoftReference<Bitmap>> iterator
                    = mReusableBitmaps.iterator();
            Bitmap item;

            while (iterator.hasNext()) {
                item = iterator.next().get();

                if (null != item && item.isMutable()) {
                    // Check to see it the item can be used for inBitmap.
                    if (canUseForInBitmap(item, options)) {
                        bitmap = item;

                        // Remove from reusable set so it can't be used again.
                        iterator.remove();
                        break;
                    }
                } else {
                    // Remove from the set if the reference has been cleared.
                    iterator.remove();
                }
            }
        }
    }
    return bitmap;
}

最后,下面這個(gè)方法判斷候選Bitmap是否滿足inBitmap的大小條件:

static boolean canUseForInBitmap(
        Bitmap candidate, BitmapFactory.Options targetOptions) {

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
        // From Android 4.4 (KitKat) onward we can re-use if the byte size of
        // the new bitmap is smaller than the reusable bitmap candidate
        // allocation byte count.
        int width = targetOptions.outWidth / targetOptions.inSampleSize;
        int height = targetOptions.outHeight / targetOptions.inSampleSize;
        int byteCount = width * height * getBytesPerPixel(candidate.getConfig());
        return byteCount <= candidate.getAllocationByteCount();
    }

    // On earlier versions, the dimensions must match exactly and the inSampleSize must be 1
    return candidate.getWidth() == targetOptions.outWidth
            && candidate.getHeight() == targetOptions.outHeight
            && targetOptions.inSampleSize == 1;
}

/**
 * A helper function to return the byte usage per pixel of a bitmap based on its configuration.
 */
static int getBytesPerPixel(Config config) {
    if (config == Config.ARGB_8888) {
        return 4;
    } else if (config == Config.RGB_565) {
        return 2;
    } else if (config == Config.ARGB_4444) {
        return 2;
    } else if (config == Config.ALPHA_8) {
        return 1;
    }
    return 1;
}


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)