I have this need to place my app in the share/send context menu so that the user can pass a file path in (any) file manager apps to my application.
How is this achieved?
I have this need to place my app in the share/send context menu so
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The share context menu makes an
INTENTwith certain contents (type of data etc). You should register your app as being able to handle such an intent with anintent filter. You’ll be automatically included if you choose the right type. You should read up on this:Read about it here: http://developer.android.com/guide/topics/intents/intents-filters.html