Intent.ACTION_SEND を呼び出すときに一部のアプリの意図を無効にしたい。Intent.ACTION_SEND を呼び出すときに、Gmail、メール、Bluetooth を表示したくありません。アリ道ありますか?
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();
}