嗨,我使用过 webview,下面是我的代码
DisplayMetrics displaymetrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(displaymetrics);
int height = displaymetrics.heightPixels;
int width = displaymetrics.widthPixels;
RelativeLayout linLayout = (RelativeLayout) findViewById(R.id.relativeLayout);
myWebView = new WebView(this);
linLayout.addView(myWebView, new RelativeLayout.LayoutParams(width, height));
我想根据屏幕大小调整 webview 的宽度和高度,但此代码无法正常工作,并且 webview 无法正确显示
UN-USED SPACE 是我手动写的,它是不应该显示的空白空间
任何机构都可以解决吗?如何根据屏幕大小修复 webview 大小
根据屏幕尺寸设置 webview 我从如何调整与 android 中的屏幕尺寸相关的 webview 宽度得到答案?需要破解,但它不起作用