I build a Google web search like example below.
String url = "https://www.google.com"
Uri picUri = Uri.parse(url);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(url));
startActivity(intent);
best solution so far was Android-Image-Cropper
Then I want do crop founded Images and save the Image (png) on my device. Unfortunately I just found solutions that recognized images locally on the device and not on a Webpage.
So can anyone help me?