0 votes
in Android by
What’s an intent in the context of Android? Describe the different types.

1 Answer

0 votes
by

Much what it sounds like, it’s the intention to perform an action, a message that is passed between components. Intents request actions from a different component, such as sending an email, opening a web page, or launch a given activity. The two types are:

Implicit Intent : This is where the intent doesn’t define the target component, requiring the Android system to conduct an evaluation of the components.

Explicit Intent :On the other hand, the explicit intent directly identifies the target component.

Related questions

+1 vote
0 votes
asked Aug 31, 2023 in Android by Robindeniel
0 votes
+2 votes
asked Oct 15, 2022 in Android by AdilsonLima
...