1

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.

user847695
  • 121
  • 1
  • 10

1 Answers1

1

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.

Community
  • 1
  • 1
Qasim
  • 5,181
  • 4
  • 30
  • 51
  • Is this continue work with latest versions of Android (KitKat, Lolipop and Marshmallow)? – user847695 Nov 08 '15 at 22:03
  • @user847695 Flash Player **is no longer officially supported by Android**, but you can install it at your own risk. – akmozo Nov 09 '15 at 12:08
  • @akmozo, I have this idea, but I have a requirement to play flash files :( For this reason i asked how can do it. – user847695 Nov 09 '15 at 14:50
  • @user847695 If you want just to install Flash Player in your Android device, you can take a look [here](https://helpx.adobe.com/flash-player/kb/installing-flash-player-android-devices.html) ... – akmozo Nov 09 '15 at 18:16