Android SDK ICS flash fullscreen & # 8594; glitch

In my application, I have a webview where a flash player is built in. The application works fine on devices with android version 4.0. On devices with ICS, the application crashes when the user wants to start the flash player, because it directly enters full-screen mode. I searched a lot in googled and found a workaround to solve this problem: mWebView.setWebChromeClient(new WebChromeClient(){ ... });

Now, after starting the player, it will no longer crash, but the web view becomes invisible.

So, I want to ask, is there any solution to this problem?

Thank!

+3
source share

All Articles