我目前正在为 android 的 flash builder 中开发一个移动应用程序。在此应用程序中,我使用的是 Web 视图,在此 Web 视图中,有一个指向基于 Web 的应用程序的链接。您要做的第一件事是在这个基于 Web 的应用程序中登录。这工作正常。但是当我关闭应用程序并重新启动应用程序时,我遇到了一个问题,我始终保持登录状态。
有什么办法可以清除网页视图的数据吗?是清除android应用程序用户数据的选项吗?
这是我的代码
<fx:Script>
<![CDATA[
import flash.geom.Rectangle;
import flash.media.StageWebView;
import flash.net.*;
import flash.net.URLRequest;
import spark.components.Application;
public var webView:StageWebView = new StageWebView();
public function init():void
{
this.addEventListener(Event.ADDED_TO_STAGE , handleLoad );
}
public function handleLoad(e:Event):void
{
webView.stage = this.stage;
webView.viewPort = new Rectangle( 0, 50, stage.stageWidth, stage.stageHeight );
webView.loadURL("http://jd44jse.ncsbe.eu.jnj.com:54400/MfmWeb/flex/mfm/plocmenuHD/main.html");
}
protected function logoutHandler(event:MouseEvent):void
{
NativeApplication.nativeApplication.exit();
}
]]>
</fx:Script>