关于照相功能

今天做项目的时候发现一个问题,就是有一些android手机没有照相功能,比如三星和摩托的一款手机,具体是哪个型号我也忘记了,希望大家在做的时候尽量注意点

try {
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
currentCameraFile = FileUtils.getPhotoRootPath();
Uri uri = Uri.fromFile(currentCameraFile);
intent.putExtra(MediaStore.EXTRA_OUTPUT, uri);// 照片输出目录
startActivityForResult(intent,PHOTOHRAPH);
} catch (Exception e) {
Toast.makeText(getApplicationContext(), "此手机照相功能发生异常", 0).show();
return;
}

你可能感兴趣的:(关于照相功能)