我正在尝试使用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..."));
但是,在列表中会出现像Hangouts这样不接受附件的应用程序。
我可以筛选出不接受附件的应用程序吗?是否有标签或其他指示符可以告诉我应用程序是否接受附件?
intent.setType("message/rfc822");
使用这个。