Webview Not Re Sizing Properly On Orientation Change
Solution 1:
*if configchanges = "orientation" - not specified,* the android system handles the change and restarts the layout, so layout is freshly created and video loads from start.
if android:configchanges = "orientation" , - This tell the system that this activity will handle the orientation change by it self. so,the android system will not load the layout refreshly . so video continues to play .The width of the parent layout will not change . so width in portrait mode is used in landscape . so , ur webview seems small.
you need to override the onconfigurationchanged () in activity and handle the orientation change. You need to specify the layoutparams for layout.
@OverridepublicvoidonConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
// Checks the orientation of the screenif (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE) {
Toast.makeText(this, "landscape", Toast.LENGTH_SHORT).show();
// for example the width of a layout intwidth=300;
intheight= LayoutParams.WRAP_CONTENT;
WebViewchildLayout= (WebView) findViewById(R.id.webview);
childLayout.setLayoutParams(newLayoutParams(width, height));
} elseif (newConfig.orientation == Configuration.ORIENTATION_PORTRAIT){
Toast.makeText(this, "portrait", Toast.LENGTH_SHORT).show();
}
}
Solution 2:
Try:
@OverridepublicvoidonConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
webView.setLayoutParams(newRelativeLayout.LayoutParams(
ViewGroup.LayoutParams.WRAP_CONTENT,
ViewGroup.LayoutParams.WRAP_CONTENT));
}
Solution 3:
Just add the following line to your activity in the manifest file:
<activityandroid:configChanges="orientation|screenSize">
Solution 4:
facing same issue. and solve it with best way
@OverridepublicvoidonConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
DisplayMetricsdisplayMetrics=newDisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(displayMetrics);
intheight= displayMetrics.heightPixels;
intwidth= displayMetrics.widthPixels;
mWebview.setLayoutParams(newLinearLayout.LayoutParams(
width,
height-100));
}
Solution 5:
As far as I can see, there must be some error in H5 page, similar resize problem
Just use other app (like chrome browser) test your url.
Post a Comment for "Webview Not Re Sizing Properly On Orientation Change"