There is a line <p style="text-align: center;"><img src="images/izvestnye/img1.jpg" alt="Image 1" /></p> , which I submit to the input in WebView. But before displaying this picture, I substitute in the link the domain of the site in this way
if (img.contains("<img src=\"images")) { img = img.replaceAll("<img src=\"images", "<img src=\"https://site.ru/images"); } Everything works .. But the question is whether it is possible to display a picture, regardless of the https or http protocol? Or you can not do that?
, which I submit...">