码迷,mamicode.com
首页 > 移动开发 > 详细

android 推断是否支持闪光灯

时间:2017-06-18 10:33:01      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:记录   []   nbsp   inf   支持   art   false   pack   manager   

近期在做录制视频功能,在找一些资料时发现 要推断是否支持闪关灯,在这记录下来,怕以后忘记

public static boolean isSupportCameraLedFlash(PackageManager pm) {
       if (pm != null) {
           FeatureInfo[] features = pm.getSystemAvailableFeatures();
           if (features != null) {
               for (FeatureInfo f : features) {
                   if (f != null && PackageManager.FEATURE_CAMERA_FLASH.equals(f.name)) 
                       return true;
               }
           }
       }
       return false;
   }

android 推断是否支持闪光灯

标签:记录   []   nbsp   inf   支持   art   false   pack   manager   

原文地址:http://www.cnblogs.com/cxchanpin/p/7043424.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!