I am having a problem that only happens on my Motorola Xoom which I have updated to 3.2 through OTA. I have a simple application that uses a WebView to load a small html that has flash content in it. Here is the code snippet.

mWebView = (WebView) findViewById(R.id.webview);
mWebView.getSettings().setJavaScriptEnabled(true);
mWebView.getSettings().setPluginsEnabled(true);

I know it is correct because it can run fine on my Samsung Galaxy S running Android 2.2. Anybody else seen this problem? Any idea how I can solve this problem?

Many thanks and I am really stuck here.

link|improve this question

64% accept rate
Just did some more experiments. Same problem when I tried to load the swf file directly instead of a html file - works fine on 2.2 but nothing shows up on 3.2. – Howard Li Aug 18 '11 at 4:59
I've been getting reports from users with 3.2 (on other devices) running into the same issue with flash. – Pete Aug 18 '11 at 6:04
Thanks, Pete. Any suggestions on any possible workarounds? – Howard Li Aug 18 '11 at 6:40
See this solution: stackoverflow.com/questions/5383364/… – kilaka Feb 12 at 12:48
feedback

1 Answer

up vote 8 down vote accepted

Try to build your application with the latest android Api (13), and activate hardware acceleration (same link, just a little below) on your activity that need to display flash.

link|improve this answer
This worked for me, thanks! – Pete Aug 19 '11 at 7:42
Nitro, Just got some time to try it out and it seems working now. Thanks! – Howard Li Aug 19 '11 at 8:12
1  
See also stackoverflow.com/questions/5383364/… – BoD Oct 17 '11 at 12:37
FYI: Works on Android 4 (ICS) – mdelolmo Jan 12 at 11:25
feedback

Your Answer

 
or
required, but never shown

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