xiaoweijun 发表于 2014-2-28 15:07:00

startActivity时客户端报Error calling method on NPObject 错误

我网上下载了一个OpenFilePlugin.java这个插件。目的是sdcard打开附件时,根据附件的格式doc,mp4,xsls调用android手机自身对应的浏览器来打开这个附件。


doc,pdf和excel等格式打开都正常。

目前测试mp4文件时发现异常。客户端会报Error calling method on NPObject 错误

我的mp4文件是http://www.zxmoa.com:8001/test/123.mp4是26.27MB大小放在/sdcard/download_test/123.mp4


//视频

            else if(lastThree.equals("avi") || lastThree.equals("mov")

                  || lastThree.equals("asf") || lastThree.equals("wmv")

                  || lastThree.equals("navi") || lastThree.equals("3gp")

                  || lastThree.equals("ram") || lastThree.equals("mkv")

                  || lastThree.equals("flv") || lastThree.equals("mp4")

                  || lastFour.equals("rmvb") || lastThree.equals("mpg")){

                   
                Intent i = this.getVideoFileIntent(path);
                Log.v("DialogTest1","xiao...oooooooooooooooo i:" + i);

                context.startActivity(i);




i是 Intent { act=android.intent.action.VIEW dat=file:///sdcard/download_test/123.mp4 typ=video/* flg=0x4000000 (has extras) }


然后在执行最后的 context.startActivity(i);时出错了。



admin 发表于 2014-2-28 15:11:32

播放视频 最好找个android 原生 播放视频的插件

lanxiong2012 发表于 2015-5-11 18:23:18

好帖就是要顶 学习学习

715213471 发表于 2015-5-11 19:13:36

收藏了学习了 顺便顶一下前辈
页: [1]
查看完整版本: startActivity时客户端报Error calling method on NPObject 错误