0

i have set swf file in webview i got everything is successfully but when i long press it give me option of full-screen so i need to avoid it how can i do that ??

here i have attach image :

enter image description here

Here is my webview :

wv_introduction = (WebView) findViewById(R.id.ady_solwv);
                wv_introduction.getSettings().setJavaScriptEnabled(true);
                wv_introduction.getSettings().setPluginState(PluginState.ON);
                wv_introduction.getSettings().setAllowFileAccess(true);
                wv_introduction.loadUrl(str_url);
Nikunj Patel
  • 21,853
  • 23
  • 89
  • 133

1 Answers1

0

Try adding these:

wv_introduction.getSettings().setLoadWithOverviewMode(false);
wv_introduction.getSettings().setUseWideViewPort(false);

Hope this helps.

Ghost
  • 3,966
  • 1
  • 25
  • 36