You can use this code to launch the gallery. Code for video:
Intent intent = new Intent(); intent.setType("video/*"); intent.setAction(Intent.ACTION_GET_CONTENT); startActivityForResult(Intent.createChooser(intent, "Select Video"), 666);
code for image
Intent intent = new Intent(); intent.setType("image/*"); intent.setAction(Intent.ACTION_GET_CONTENT); startActivityForResult(Intent.createChooser(intent, "Select Video"), 666);
And after receiving the form in the gallery, you can do whatever you want from it. Make a message if you need to ask anything else. Thanks
source share