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
This is what you need:
ACTION_VIEW
Change your code to:
Intent intent = new Intent(); intent.setAction(android.content.Intent.ACTION_VIEW); intent.setType("image/*"); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(intent);