转载请注明出处:小锋学长生活大爆炸[xfxuezhang.cn]文章来源:https://www.toymoban.com/news/detail-826950.html
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);
注意要给一下“相机”权限,选“仅使用中可用”或者“总是允许”都可以,“每次询问”可能不大行。文章来源地址https://www.toymoban.com/news/detail-826950.html
到了这里,关于【教程】autojs使用Intent打开相机拍照并指定存储路径的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!