ACTION_SEND:可以过滤接受附件的应用程序吗?

时间:2014-10-20 11:10:23

标签: android android-intent attachment

我正在尝试使用ACTION_SEND分享文字和附件。

    Intent intent = new Intent(Intent.ACTION_SEND);
    intent.setType("text/plain");
    intent.putExtra(Intent.EXTRA_EMAIL, new String[]{"email"});
    intent.putExtra(Intent.EXTRA_SUBJECT, "subject");
    intent.putExtra(Intent.EXTRA_TEXT, "body");

    Uri uri = Uri.fromFile(file);
    intent.putExtra(Intent.EXTRA_STREAM, uri);

    startActivity(Intent.createChooser(intent, "Send..."));

但是,在列表中会显示不接受附件的环聊等应用程序。

我可以过滤掉不接受附件的应用程序吗?是否有标签或其他指示器可以告诉我申请是否接受附件?

1 个答案:

答案 0 :(得分:1)

  intent.setType("message/rfc822");

使用此功能。