For feedback, when you click on a button, you want only mail to be called, and a long list of different programs is called. Maybe I did not put the filter?
Intent shareIntent = new Intent(Intent.ACTION_SEND); shareIntent.setType(HTTP.PLAIN_TEXT_TYPE); shareIntent.setType("text/plain"); shareIntent.putExtra(Intent.EXTRA_EMAIL, new String[] { "trinka.online@gmail.com" }); shareIntent.putExtra(Intent.EXTRA_SUBJECT, "Вопрос:"); shareIntent.putExtra(Intent.EXTRA_TEXT, "текст вопроса"); startActivity(shareIntent);