Activity and Intents
StartActivityForResult
By the help of android startActivityForResult() method, we can get result from another activity. By the help of android startActivityForResult() method, we can send information…
Explicit Intent
Android Explicit intent specifies the component to be invoked from activity. In other words, we can call another activity in android by explicit intent. We…
Implicit Intent
Android Intent is the message that is passed between components such as activities, content providers, broadcast receivers, services etc. It is generally used with startActivity()…
Activity Lifecycle
Android Activity Lifecycle is controlled by 7 methods of android.app.Activity class. The android Activity is the subclass of ContextThemeWrapper class. An activity is the single…