I'm using a WebView to display a web page which contains some Flash content which basically works pretty well. The big problem is, that the Flash content seems not to consider the WebView's boundings: The Flash content is displayed even if the WebView is too small to show the complete page and the Flash content is not inside the WebView's boundings. Moreover this Flash content overlays other (native) layout elements that are displayed next to the WebView. To me, it seems, that the Flash content is rendered in (special) z-Layer, that overlays all other layout elements.

Tested with: Android 2.2 and Flash 10.1.

Is this a known bug in Adobes Flash player 10.1?

link|improve this question

38% accept rate
feedback

2 Answers

I found this (6 month old) android bug report: http://code.google.com/p/android/issues/detail?id=8938 Unfortunately there are so far no solutions, workarounds or comments.

In Adobe's bug tracker I found a similar bug (https://bugs.adobe.com/jira/browse/FP-4684) with the following comment:

The behavior you're describing is a known issue in Flash Player 10.1 on the Android platform. Today, Flash will always display on top of HTML content. Also, when two pieces of Flash content are overlapping, the order in which they are rendered is unpredictable.

This fix for this issue will require updates from both the Android and Flash Player teams, and will be addressed in a future release.

link|improve this answer
+1 for Flash 10.3, and Android 2.3.4 :( – timberwo7ves Aug 13 '11 at 23:43
1  
its now an year above, still same issue woth SWF and android... its sad :( – rohit mandiwal Mar 25 at 11:42
Still same bug, two years later. FUCK – Cristian Apr 23 at 19:30
feedback

If it is possible to abstain from the Flash content you can just use the Websettings to disable plugin support.

    webView = (WebView) findViewById(R.id.webview);
    WebSettings settings = webView.getSettings();
    // deprecated only for API < 8
    settings.setPluginsEnabled(false);
    // for API > 8 recommended
    settings.setPluginState(PluginState.OFF);

If this code doesn't disable the flash plugin and you want to run your App vor API < 8 just delete...

   settings.setPluginsEnabled(true);

...if your are using it in your Websettings without setting the bool to false - that has worked for me! I know that this approach isn't always a solution, but in my case it worked, because the flash content was just an unimportant banner.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.