I want to put a destination address and allow user to compose mail only. how can i achieve this ? i put the destination address in the but its not taking the mail.
String pakageName = "com.google.android.gm";
String className = "com.google.android.gm.ComposeActivityGmail";
ComponentName name=new ComponentName(pakageName, className);
Intent i=new Intent(Intent.ACTION_SEND);
i.setComponent(name);
i.putExtra(Intent.EXTRA_EMAIL,"<>");
i.putExtra(Intent.EXTRA_SUBJECT, getResources().getString(R.string.objet));
i.putExtra(Intent.EXTRA_TEXT, Html.fromHtml(emailData));
i.setType("text/plain");
startActivity(i);