how to open gmail and send email to specific id ina android app?
Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.setType("plain/text");
startActivity(emailIntent);
but its not working for me ActivityNotFoundException is shown?
Yes, it should work. Try on a real device.