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