Android Webview has extra white space at the bottom
问题 I'm using the following method with HTML to load a local image into webview void loadingImage(WebView mWebView){ mWebView.getSettings().setSupportZoom(false); mWebView.getSettings().setDisplayZoomControls(false); String mHead="<html><head><style type='text/css'>body{margin:auto auto;text-align:center;} img{width:100%25;} </style></head>"; String mBody = "<body> <img src='my_image.jpg'/> </body></html>"; mWebView.loadDataWithBaseURL("file:///android_res/drawable/", mHead + mBody, "text/html",