|
我网上下载了一个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);时出错了。
|
|