I have made a media player application. Everything works fine but I want that when user selects any media file then in the default popup window i want to include my application icon. For example when user selects any media file then android ask to user to complete this action using MusicPlayer, MX player etc. I want my application in that popup.
Thanks in advance
You'll need to add the following intent-filters to your activity in the manifest:
If you want your app to show up only for mp3 files, try this:
To read more on intent filters: Link.