我正在尝试使用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..."));
但是,在列表中会显示不接受附件的环聊等应用程序。
我可以过滤掉不接受附件的应用程序吗?是否有标签或其他指示器可以告诉我申请是否接受附件?
答案 0 :(得分:1)
intent.setType("message/rfc822");
使用此功能。