How can you filter out specific apps when using the ACTION_SEND intent? This question has been asked in various ways, but I haven\'t been able to gather a
Intent emailIntent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts("mailto", "android@gmail.com", null)); emailIntent.putExtra(Intent.EXTRA_SUBJECT, text); startActivity(Intent.createChooser(emailIntent, "Send email..."));