Using a USB flash drive with an Android web browser

I want to use flash in webview.

I used the following code.

 mWebView = (WebView) findViewById(R.id.webview);
 mWebView.getSettings().setPluginsEnabled(true);
 mWebView.loadUrl("http://domain-path/flash/test.html");

The test.html file contains an embedded Flash object.

But when I run this, it does not display anything.

Please suggest .....

+5
source share
6 answers

try to add

webView.getSettings().setPluginsEnabled(true);
webView.getSettings().setPluginState(PluginState.ON);
+5
source

because your browser does not have a flash player. you need to install flash player 10.1

0
source

. , Flash- , . , - .

: html autoplay = true , - .

,

0

AndroidManifest.xml?

<uses-permission android:name="android.permission.INTERNET"/>

fogetting permissions

0

, , AndroidManifest.xml?

<uses-permission android:name="android.permission.INTERNET"/>

WebSettings webSettings = myWebView.getSettings();
WebSettings.setPluginsEnabled(true);
webSettings.setPluginState(PluginState.ON);
0

Chrome Android Flash. , , 2011 , Adobe , Flash . Google - -, HTML5, Adobe -. , morzilla flash android

0

All Articles