Home » Interview » Technology

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

Correct Answer: Intents are created to define an action that we want to perform and the launches the appropriate activity from another application Code Intent intent = new Intent(IntentACTION_SEND); intentputExtra(IntentEXTRA_EMAIL, recipientArray); startActivity(intent);

← Previous Question Next Question→

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion