Here you can find the source of isCameraSupported(Context context)
public static boolean isCameraSupported(Context context)
//package com.java2s; import android.content.Context; import android.content.pm.PackageManager; public class Main { public static boolean isCameraSupported(Context context) { return context.getPackageManager().hasSystemFeature( PackageManager.FEATURE_CAMERA); }/*from w w w . ja va 2 s . c om*/ }