Back to Developer Roadmap

Explicit Intents

src/data/roadmaps/android/content/[email protected]

4.0750 B
Original Source

Explicit Intents

Explicit Intents are primarily used within an application's own boundaries. In explicit intents you specify the component that needs to be responded to the intent. Therefore, the target component must be specified by calling methods such as setComponent(ComponentName), setClass(Context, Class), or setClassName(String, String). This means that explicit intents are typically used for launching activities, broadcasting messages, starting services within the app. Explicit intents are not resolved by the system but are passed to the component identified in the intent.

Visit the following resources to learn more: