Java tutorial
//package com.java2s; import android.content.Context; import android.content.pm.PackageManager; public class Main { public static boolean isSupportCameraHardware(Context context) { if (context != null && context.getPackageManager().hasSystemFeature(PackageManager.FEATURE_CAMERA)) { // this device has a camera return true; } else { // no camera on this device return false; } } }