

In Implicit Intents we do need to specify the name of the component.Example with code in the end of this post will make it more clear.

Here SecondActivity is the JAVA class name where the activity will now be navigated. The below given code snippet will help you understand the concept of Explicit Intents Intent intent = new Intent(getApplicationContext(), SecondActivity.class)

In the similar way we can start a service to download a file in background process.Įxplicit Intent work internally within an application to perform navigation and data transfer. For Example: If we know class name then we can navigate the app from One Activity to another activity using Intent.
