我使用下面的代码使图像适合WebView。
String webViewSoruce = "<img src= "http://mywebsite.com/img.jpeg">
String head = "<head><style>img{max-width: 100%; width:auto; height: auto;}</style></head>";
String mWebViewSource= "<html>" + head + "<body>" + webViewSoruce + "</body></html>";
内容按预期正确加载。 但是,源链接中的图像很大并且消耗大量数据。此外,加载慢速互联网连接需要很长时间。
如何在WebView中压缩/缩小图像大小?