1、webview切换地址导致网页留白问题,需在onPageStarted方法中获取网页的高度,重新设置给webview(注意宽度也要设置)
webView.loadUrl("javascript:app.resize(document.body.getBoundingClientRect().height)");
webView.setLayoutParams(new LinearLayout.LayoutParams(ScreenUtils.getScreenWidth(),(int) (height * getResources().getDisplayMetrics().density)));