I am Using Following Code for Send the Email from my application but problem is the Email application is open and my main application is closed so what is the problem.
Thanks in Advance.
My Code:-
Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.setType("text/plain");
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,"Test");
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT,"This is Email From Test Application");
startActivity(Intent.createChooser(emailIntent, "Email:"));