在webview中加载交互式swf的问题

时间:2011-07-11 05:05:29

标签: android flash

我开发了一个应用程序,其中我想在android.i中加载SWF文件已成功加载非交互式(线性) swf文件。但我无法查看用户交互(非线性)文件,该文件基本上是在Flash中的动作脚本2.0中设计的。在这里,我附上我的代码,你能给我解决方案吗?

package com.aaa;
import android.app.Activity;
import android.os.Bundle;
import android.webkit.WebView;
public class aaa extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    try{
    WebView wv=(WebView) findViewById(R.id.webView1);
    wv.getSettings().setJavaScriptEnabled(true);
    wv.getSettings().setPluginsEnabled(true);
    String html ="<object width=\"550\" height=\"400\"> " +
                 "<param name=\"movie\"  value=\"file:///android_asset/nxt.swf\"> " +
                 "<embed src=\"file:///android_asset/nxt.swf\"  width=\"550\" height=\"400\"> " +
                 "</embed> </object>";
    wv.setWebViewClient(new HelloWebViewClient());
    String mimeType = "text/html";
        String encoding = "utf-8";
    wv.loadDataWithBaseURL("null",html, mimeType, encoding, "");
    }catch (Exception e) 
    {
        e.printStackTrace();
    }
 }
}
  

main.xml中

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/white"
>
<WebView android:id="@+id/webView1" android:layout_width="match_parent"   android:layout_height="match_parent"></WebView>

</LinearLayout>

1 个答案:

答案 0 :(得分:0)

如果你正在使用flash环境,你可以尝试使用AdobeAir-emulator。检查它是否有效加载任何Flash文件。