问题描述
- android可否直接调用flash player播放swf文件,而不用webview去加载
-
调用的方法如下
public boolean openFlash(String path){
Intent intent = new Intent();
Bundle bundle = new Bundle();
bundle.putString(Define.OPEN_MODE, Define.NORMAL);
//打开模式
bundle.putBoolean(Define.SEND_CLOSE_BROAD, false);
//关闭时是否发送广播
bundle.putString(Define.THIRD_PACKAGE, getActivity().getPackageName());
//第三方应用的包名,用于对改应用合法性的验证
bundle.putBoolean(Define.CLEAR_TRACE, true);
//关闭后删除打开文件
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setAction(android.content.Intent.ACTION_VIEW);
intent.setClassName("com.adobe.flashplayer", "com.adobe.flashplayer.SettingsManager");
File file = new File(path);
if (file == null || !file.exists()) {
return false;
}
Uri uri = Uri.fromFile(file);
intent.setDataAndType(uri, "application/x-shockwave-flash");
intent.putExtras(bundle);
try
{
getActivity().startActivity(intent);
}
catch (ActivityNotFoundException e)
{
e.printStackTrace();
return false;
}
return true;
}传的参数就是swf的地址,点击swf文件后,可以打开flash player,但是并不可以播放,只是进入了Adobe的网页里,求问,问题出在哪,setClassName的参数设置错误了??(不想用webview进行加载动画)
解决方案
http://doublekj.blog.163.com/blog/static/14681847420128545910855/
解决方案二:
android webview播放swf文件
时间: 2025-01-27 21:49:42