I want Disable Some app intent when i calling Intent.ACTION_SEND. I dont want show gmail, email, bluetooth when i call Intent.ACTION_SEND. There is ant way?.
try
{ Intent i = new Intent(Intent.ACTION_SEND);
i.setType("text/plain");
String sAux = linkok;
i.putExtra(Intent.EXTRA_TEXT, sAux);
startActivity(Intent.createChooser(i, "choose one"));
}
catch(Exception e)
{ //e.toString();
}