From d09121f9fb7cf571a6b71c4174835dd4b7359595 Mon Sep 17 00:00:00 2001 From: Owen Lin Date: Wed, 27 Jun 2012 19:01:21 +0800 Subject: Don't reuse bitmaps in BitmapRegionDecoder before JB. Change-Id: I8a2f520f98116af6861fa2cd1460e6f848bbb4e4 --- gallerycommon/src/com/android/gallery3d/common/ApiHelper.java | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'gallerycommon/src/com/android/gallery3d/common') diff --git a/gallerycommon/src/com/android/gallery3d/common/ApiHelper.java b/gallerycommon/src/com/android/gallery3d/common/ApiHelper.java index 15026bbf3..c42c5fed6 100644 --- a/gallerycommon/src/com/android/gallery3d/common/ApiHelper.java +++ b/gallerycommon/src/com/android/gallery3d/common/ApiHelper.java @@ -16,9 +16,12 @@ package com.android.gallery3d.common; +import android.annotation.TargetApi; +import android.os.Build; import android.provider.MediaStore.MediaColumns; import android.view.View; +@TargetApi(Build.VERSION_CODES.JELLY_BEAN) public class ApiHelper { public static final boolean HAS_VIEW_SYSTEM_UI_FLAG_LAYOUT_STABLE = @@ -30,6 +33,9 @@ public class ApiHelper { public static final boolean HAS_MEDIA_COLUMNS_WIDTH_AND_HEIGHT = hasField(MediaColumns.class, "WIDTH"); + public static final boolean HAS_REUSING_BITMAP_IN_BITMAP_REGION_DECODER = + Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN; + private static boolean hasField(Class klass, String fieldName) { try { klass.getDeclaredField(fieldName); -- cgit v1.2.3