I developed an app that can reverse search by image. I wish user can use image and keyword at the same time to reverse search.
The method getImgurContent()
works. It returns image's URL on the internet. But I don't know how to reverse search image with keyword at the same time.
uri = Uri.parse("https://images.google.com/searchbyimage?image_url=" + getImgurContent());
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);