The Android supports flash files?
How I can integrate this?
- WebView??
- Integrate with some tool of Adobe??
The idea is have local flash files and play that inside of my application.
The Android supports flash files?
How I can integrate this?
The idea is have local flash files and play that inside of my application.
Short Answer:
Yes, you can play flash files in android app using just a Webview.
Long Answer:
You have to create an html file with embedded swf file. See sample here http://pastebin.com/BYrfKmea
After that You can put html and swf files in assets folder and try opening it in a WebView by
mWebView.loadUrl("file:///android_asset/player.html");
.
This thread also might be useful.