I have an android app that should search in google using image.. User should upload photo and search using it..
I have that code to choose photo to search..
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent,
"Select Picture"), GALLERY_CODE);
I searched in google, and I found only that..
But that searches for images using keyword.. I don't want that..
Also I tried to search in Bing using image but I couldn't.
Any Idea ?