91-9990449935 0120-4256464 |
Android Intent TutorialAndroid Intent is the message that is passed between components such as activities, content providers, broadcast receivers, services etc. It is generally used with startActivity() method to invoke activity, broadcast receivers etc. The dictionary meaning of intent is intention or purpose. So, it can be described as the intention to do action. The LabeledIntent is the subclass of android.content.Intent class. Android intents are mainly used to:
Types of Android IntentsThere are two types of intents in android: implicit and explicit. 1) Implicit IntentImplicit Intent doesn't specifiy the component. In such case, intent provides information of available components provided by the system that is to be invoked. For example, you may write the following code to view the webpage. 2) Explicit IntentExplicit Intent specifies the component. In such case, intent provides the external class to be invoked. To get the full code of explicit intent, visit the next page. Android Implicit Intent ExampleLet's see the simple example of implicit intent that displays a web page. activity_main.xmlFile: activity_main.xml
Activity classFile: MainActivity.java
Output:
Next TopicAndroid Explicit Intent Example
|