本文主要是介绍【教程】autojs使用Intent打开相机拍照并指定存储路径,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
转载请注明出处:小锋学长生活大爆炸[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;
}
// 获取文件Uri
var 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);
注意要给一下“相机”权限,选“仅使用中可用”或者“总是允许”都可以,“每次询问”可能不大行。
这篇关于【教程】autojs使用Intent打开相机拍照并指定存储路径的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!