Is there any way to load an installed activity that isn’t explicitly defined in my application manifest?
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.
Sure. You could start the "gallery" to pick a photo like this:
from the manual, we find you can have 2 types of intents to call:
You are looking for implicit intents I guess. This is explained a bit lower:
(emph. mine).
So you need either to know something to call it explicitly (like classname etc), or call the intent, and then you’d have to know the intent-filter.
I don’t think there is a method to call something knowing only the package name: mind you, you can have an app with several packages, where not all have activities, let alone activities that can be run.