summaryrefslogtreecommitdiffstats
path: root/gallerycommon/src/com/android/gallery3d
diff options
context:
space:
mode:
authorPin Ting <pinting@google.com>2012-08-08 11:50:31 -0700
committerPin Ting <pinting@google.com>2012-08-08 11:50:31 -0700
commitee87994cca9e35444b17ba6c1c129cdc1cd998d4 (patch)
treefc548fe64106f2a018abab9f4760bf9df050dd7f /gallerycommon/src/com/android/gallery3d
parentcc09b72dd272717d4b805bc091893f8e2303567f (diff)
downloadandroid_packages_apps_Snap-ee87994cca9e35444b17ba6c1c129cdc1cd998d4.tar.gz
android_packages_apps_Snap-ee87994cca9e35444b17ba6c1c129cdc1cd998d4.tar.bz2
android_packages_apps_Snap-ee87994cca9e35444b17ba6c1c129cdc1cd998d4.zip
Don't use getPreferredPreviewSizeForVideo and getSupportedVideoSizes before api 11.
Bug:6927815 Change-Id: Ifaa154c93536cfcc65fb1c67834dc737f2065f11
Diffstat (limited to 'gallerycommon/src/com/android/gallery3d')
-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 6ae1bab2f..9beac8807 100644
--- a/gallerycommon/src/com/android/gallery3d/common/ApiHelper.java
+++ b/gallerycommon/src/com/android/gallery3d/common/ApiHelper.java
@@ -136,6 +136,9 @@ public class ApiHelper {
public static final boolean HAS_EFFECTS_RECORDING =
Build.VERSION.SDK_INT >= VERSION_CODES.JELLY_BEAN;
+ public static final boolean HAS_GET_SUPPORTED_VIDEO_SIZE =
+ Build.VERSION.SDK_INT >= VERSION_CODES.HONEYCOMB;
+
public static int getIntFieldIfExists(Class<?> klass, String fieldName,
Class<?> obj, int defaultVal) {
try {