gpt4 book ai didi

android - 如何在android 模拟器中运行.swf 文件?

转载 作者:太空狗 更新时间:2023-10-29 14:28:33 26 4
gpt4 key购买 nike

我在本地 Assets 文件夹中有一个 swf 文件,我编写了如下代码

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Context mContext= PanchangamActivity.this;

WebView wv=new WebView(mContext);
wv = (WebView)findViewById(R.id.webView1);
wv.getSettings().setJavaScriptEnabled(true);
wv.getSettings().setPluginsEnabled(true);
wv.getSettings().setAllowFileAccess(true);
wv.loadUrl("file:///android_asset/www/swf2.html");
}

SWF2.HTML:

 <html>
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8" />
</head>
<body>
<object width="215" height="140">
<param name="movie" value="flash.swh">
<embed src="c:\Users\janardhan\Desktop\flash.swf"
width="215" height="140">
</embed>
</object>
</body>

现在在 android 模拟器中运行它时我得到了 enter image description here

请帮帮我!如何解决这个问题

最佳答案

您看到的是缺少的插件图标,您没有安装 Flash Player。

我会推荐阅读 How can I install adobe flash on the android emulator有关如何在模拟器上启动和运行 Flash 的信息。

关于android - 如何在android 模拟器中运行.swf 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9308712/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com