Android Development in tamil part-4 | Explicit Intent and Implicit Intent



Android Development in tamil part-4 | Explicit Intent and Implicit Intent

Android Development in tamil  part-4 | Explicit Intent and Implicit Intent

An intent is an abstract description of an operation to be performed. It can be used with startActivity to launch an Activity, broadcastIntent to send it to any interested BroadcastReceiver components, and startService(Intent) or bindService(Intent, ServiceConnection, int) to communicate with a background Service.

An Intent provides a facility for performing late runtime binding between the code in different applications. Its most significant use is in the launching of activities, where it can be thought of as the glue between activities. It is basically a passive data structure holding an abstract description of an action to be performed.

Comments are closed.