I have a problem ... I want to change an image (ImageView). I capture the image from a website. On this page there is more than one image. I want to select the URL, and I change it.
Elements image;
image = document.select("img");
String PhotoSrc = image.attr("src");
// OR
Elements castsImageUrl = document.select("img[src~=(?i)\\.(png|jpe?g|gif)]");
imgSrc = castsImageUrl.first().attr("src");
I do not select the url I want. I do not know how I can do it. When I have the URL, as I change my R.id.Photo?