score:1

Accepted answer

android version higher than gingerbread(2.3) does not support flash. for android version below ics(4.~), you can insert a swf file to webview.

webview wv = (webview) findviewbyid(your id);
websettings ws = wv.getsettings();
ws.setpluginstate(pluginstate.on);
ws.setjavascriptenabled(true);
wv.loadurl(swf filepath);

hope this helps.

score:0

i'm not 100% sure that android supports flash. unless i'm missing some part of your questions then i would go back to trying to play it as a video. you could probably use a mediaplayer to accomplish this. i believe this is what i used when i was working on a internet video search service application.


Related Query

More Query from same tag