我使用下面的代码将照片发送到其他应用程序。
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("image/jpeg");
sharingIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(FilePath));
startActivity(Intent.createChooser(sharingIntent, "Share via"));
但我想过滤一些应用程序。例如,我不想分享到 Facebook。我知道它的包名是com.facebook.katana
. 如何在显示我可以分享照片的所有应用程序时进行过滤?