I read about using ACTION_SEND to get registered list apps from this link
I'm using code:
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send.");
sendIntent.setType("text/plain");
startActivity(sendIntent);
, but I want send to specified app without the list. How to do that?