I want to open the email application on my android app: The following code crashes Am I doing anything wrong? please provide code
Intent i = new Intent (Intent.A
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("plain/text");
intent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[] {});
intent.putExtra(android.content.Intent.EXTRA_SUBJECT,"");
intent.putExtra(android.content.Intent.EXTRA_TEXT, "");
/* Send it off to the Activity-Chooser */
startActivity(Intent.createChooser(intent,"Send"));