How to perform actions that are provided by other application e.g. sending email?

Submitted by: Muhammad
Intents are created to define an action that we want to perform and launches the appropriate activity from another application.

Code

Intent intent = new Intent(Intent.ACTION_SEND);intent.putExtra(Intent.EXTRA_EMAIL, recipientArray);

startActivity(intent);
Submitted by: Muhammad

Read Online Team Leader Android Developer Job Interview Questions And Answers