如何为 android 应用程序加载网站(flash)

How to load a website inside a air for android application (flash)

我需要使用 actionScript(3.0) 为 android 应用程序(阶段 WebView)加载我自己的网站。这可能吗?

我使用以下代码,但在我的应用程序中不起作用。

navigateToURL(new URLRequest("http://www.adobe.com"), "_blank");
import flash.display.MovieClip;
import flash.media.StageWebView;
import flash.geom.Rectangle;



var webView: StageWebView = new StageWebView();


webView.stage = this.stage;
webView.viewPort = new Rectangle(0, 0, stage.stageWidth, stage.stageHeight);
webView.loadURL("http://www.adobe.com");