I had this in my onOptionItemSelected
of menu. Whenever I try to run this intent it throws force close error.
case R.id.Mail:
Intent emailIntent=new Intent(android.content.Intent.ACTION_SEND);
emailIntent.setType("plain/text");
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT,message);
startActivity(emailIntent);
break;