java
php
css
xml
ajax
python
mysql
xcode
android
visual-studio
multithreading
html5
json
perl
algorithm
facebook
cocoa
delphi
asp
jsp
I solved the mentioned problem by overriding the onShowCustomView method Please try if this works for you. Below is my code. Simon
mWebView.setWebChromeClient(new WebChromeClient(){
public void onShowCustomView(View view, int requestedOrientation, WebChromeClient.CustomViewCallback callback){ super.onShowCustomView(view, callback); if(Build.VERSION.SDK_INT >=14) { if (view instanceof FrameLayout) { base.addView(view, new FrameLayout.LayoutParams( ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.FILL_PARENT, Gravity.CENTER)); base.setVisibility(View.VISIBLE); } } } });
See my answer over here:
flash player crashes when trying to enter fullscreen mode android 4.0
This is how I solved this issue. Hope it helps.
Can you describe how you fixed that crash. I have the same crash in the show() method which is not my code but webkit's..
In the link you gave there is no full description of the fix.
Thanks.