summaryrefslogtreecommitdiffstats
path: root/gallerycommon/src
diff options
context:
space:
mode:
authorGeorge Mount <mount@google.com>2013-03-15 07:52:15 -0700
committerGeorge Mount <mount@google.com>2013-03-15 08:38:28 -0700
commitb7cc5e99563bc695ec871f897914eb2cb797ad53 (patch)
treea168b000595a7aacfa404b745347eee4ea963827 /gallerycommon/src
parent2e73dca71ba700f285b23fcab0c8f32b9b3ce5a4 (diff)
downloadandroid_packages_apps_Snap-b7cc5e99563bc695ec871f897914eb2cb797ad53.tar.gz
android_packages_apps_Snap-b7cc5e99563bc695ec871f897914eb2cb797ad53.tar.bz2
android_packages_apps_Snap-b7cc5e99563bc695ec871f897914eb2cb797ad53.zip
Use cancellationSignal only on API Level 16 and above.
Bug 8390238 Change-Id: If2dacb1eb74e531d004b6f281d32a81f7cd59139
Diffstat (limited to 'gallerycommon/src')
-rw-r--r--gallerycommon/src/com/android/gallery3d/common/ApiHelper.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/gallerycommon/src/com/android/gallery3d/common/ApiHelper.java b/gallerycommon/src/com/android/gallery3d/common/ApiHelper.java
index 13d48fd2c..b0b1fe070 100644
--- a/gallerycommon/src/com/android/gallery3d/common/ApiHelper.java
+++ b/gallerycommon/src/com/android/gallery3d/common/ApiHelper.java
@@ -185,6 +185,9 @@ public class ApiHelper {
public static final boolean HAS_ROTATION_ANIMATION =
hasField(WindowManager.LayoutParams.class, "rotationAnimation");
+ public static final boolean HAS_CANCELLATION_SIGNAL =
+ Build.VERSION.SDK_INT >= VERSION_CODES.JELLY_BEAN;
+
public static int getIntFieldIfExists(Class<?> klass, String fieldName,
Class<?> obj, int defaultVal) {
try {