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

android 推断手机是否支持前置摄像头

时间:2017-06-22 14:46:19      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:return   wap   nbsp   support   track   res   bool   ber   version   

话不多说 直接上代码,

@SuppressLint("NewApi")
public static boolean isSupportFrontCamera() {
if (!hasGingerbread()) {
return false;
}
@SuppressWarnings("deprecation")
int numberOfCameras = android.hardware.Camera.getNumberOfCameras();
if (2 == numberOfCameras) {
return true;
}
return false;
}
public static boolean hasGingerbread() {
       return Build.VERSION.SDK_INT >= Build.VERSION_CODES.GINGERBREAD;
   }

搞定

android 推断手机是否支持前置摄像头

标签:return   wap   nbsp   support   track   res   bool   ber   version   

原文地址:http://www.cnblogs.com/mthoutai/p/7064815.html

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