So, I have the file path of a file in an application & I want to give the user the ability to select from all applications on the phone that can handle/open that file type and then open the file in that applicaton. How do I do this? – performs a similar function to a file manager.
Share
First you have to pick the type of Intent you want. This code picks applications that can send the data through SMS/email/etc utilizing
ACTION_SEND.Next you need to use putExtra to get the file/message to the Intent.
Finally you create a chooser.