我是靠谱客的博主 舒适泥猴桃,最近开发中收集的这篇文章主要介绍android action pick,使用相册选择视频时报错了,No Activity found to handle Intent { act=android.intent.action.PICK...,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

这个是报错信息:

{"code":12,"message":"No Activity found to handle Intent { act=android.intent.action.PICK typ=video/* }"}

newCreditApplyRecord.galleryVideo = function() {

// 从相册中选择图片

mui.toast("从相册中选择一段视频");

plus.gallery.pick(function(path) {

console.log("从相册中选择了:" + path);

plus.io.resolveLocalFileSystemURL(path, function(entry) {

entry.file(function(file) {

//得到file对象

console.log("得到选择的视频:" + file.size + '--' + file.name + "--" + file.fullPath);

selectVideoElement.parentElement.querySelector("#showImg").src = "../../appres/images/video.jpg";

imgPathsArray['video'] = file;

});

});

}, function(e) {

mui.toast("取消选择视频"+JSON.stringify(e));

console.log(JSON.stringify(e));

}, {

filter: "video",

multiple: false

});

}

最后

以上就是舒适泥猴桃为你收集整理的android action pick,使用相册选择视频时报错了,No Activity found to handle Intent { act=android.intent.action.PICK...的全部内容,希望文章能够帮你解决android action pick,使用相册选择视频时报错了,No Activity found to handle Intent { act=android.intent.action.PICK...所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(41)

评论列表共有 0 条评论

立即
投稿
返回
顶部