I have my android app which gets all installed applications via – queryIntentActivities
.
and I need to be able to add my own activity to this list, so I can start it, when this activity is picked, How can I do it?
Thank you on advance.
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.
Implement an
<intent-filter>on your<activity>which matches theIntentthat you are creating. Something akin to:(where
???would be replaced by whateverAPP_DEFALUT_MIME_TYPEis, I guess)