How to run flash from android application -


i trying create application can read "swf" flash file not working in may app.

is there jar/library should include in project run "swf" file smoothly.

my code :

   webview wv = (webview) findviewbyid(r.id.wbmyview);    websettings ws = wv.getsettings();    ws.setpluginstate(pluginstate.on);    ws.setjavascriptenabled(true);    ws.setallowfileaccess(true);    wv.loadurl("http://www.myweb.com/myflash/file1.swf"); 

please 1 can me.

try this

webview.getsettings().setpluginsenabled(true); deprecated method try targeting min sdk version 8 (2.2) , setting webview.getsettings().setpluginstate(websettings.pluginstate.on);

reference


Comments

Popular posts from this blog

python - mat is not a numerical tuple : openCV error -

c# - MSAA finds controls UI Automation doesn't -

wordpress - .htaccess: RewriteRule: bad flag delimiters -