I\'m looking for a way to open the Android gallery application from an intent.
Android
I do not want to return a picture, but rather just open the gallery to al
As you don't want a result to return, try following simple code.
Intent i=new Intent(Intent.ACTION_PICK); i.setType("image/*"); startActivity(i);