转载请注明出处:小锋学长生活大爆炸[xfxuezhang.cn]

var photoPath = "/sdcard/a.jpg";var photoFile = new java.io.File(photoPath);if (!photoFile.exists()) {photoFile.getParentFile().mkdirs();}try {photoFile.createNewFile();} catch (e) {toast("创建文件失败: " + e);return;}// 获取文件Urivar photoURI = android.net.Uri.fromFile(photoFile);// 创建Intent启动相机var intent = new android.content.Intent("android.media.action.IMAGE_CAPTURE");intent.putExtra(android.provider.MediaStore.EXTRA_OUTPUT, photoURI);// 启动相机应用app.startActivity(intent);

注意要给一下“相机”权限,选“仅使用中可用”或者“总是允许”都可以,“每次询问”可能不大行。