使用 Intent 共享文本

在呼叫时,将出现应用程序选择器对话框,通过选择应用程序,你可以与其共享你的内容。

要调用,请在程序类中使用以下代码行:

share(context, "This is a test message", "Test Subject")

功能定义:

public static void share (Context context, String text, String subject, String title, String dialogHeaderText) {
    Intent intent = new Intent(android.content.Intent.ACTION_SEND);
    intent.setType("text/plain");
    intent.putExtra(android.content.Intent.EXTRA_SUBJECT, subject);
    intent.putExtra(android.content.Intent.EXTRA_TEXT, text);
    intent.putExtra(Intent.EXTRA_TITLE, title);
    context.startActivity(Intent.createChooser(intent, dialogHeaderText));
}

请参阅此处的原始帖子: http//stackoverflow.com/a/35159850/3819836