In Android messaging, when click on attach it open the list of content provider like Camera, Gallery, Audio, Video etc. How to open the same list on button click?
Like this :

In Android messaging, when click on attach it open the list of content provider
Share
What you want is actually a little complex: you need to call a method like this in your Activity
to show the dialog, and then this is the actual implementation of the selection adapter.
This is actually how the messaging dialog does it (the class above is from the MMS app) and you can see all the gory details by going to https://android.googlesource.com/platform/packages/apps/Mms/+/master/src/com/android/mms/ui and looking at the ComposeMessageActivity’s
showAddAttachmentDialogmethod and theAttachmentTypeSelectorAdapter.