应用程序启动时Flash文件播放

时间:2013-09-13 07:20:37

标签: android flash

是否可以将Flash文件作为我的应用程序的启动?我就像Flash文件在应用程序启动时播放自己并跳转到应用程序!我怎样才能做到这一点?示例将不胜感激

1 个答案:

答案 0 :(得分:1)

制作SplashActivity并试试这个:

WebView webview=(WebView)findViewById(R.id.web_play);

File decfile = new File("/mnt/sdcard/flashplay/temp/test.swf");

Uri uri = Uri.fromFile(decfile);

if(decfile.exists()){

    webview.getSettings().setJavaScriptEnabled(true);
    webview.getSettings().setPluginsEnabled(true);
    webview.getSettings().setAllowFileAccess(true);
    webview.loadUrl(uri.toString());
}