在android上通过`intent.ACTION_SEND`分享大量文本

时间:2014-10-20 13:53:00

标签: android android-intent share

我想通过Intent.ACTION_SEND分享一个巨大的文字;但它只是发送了一段我的文字......:|

这是我的代码

Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, txt_Main.getText().toString());
startActivity(Intent.createChooser(intent, "Share via ..."));

谢谢

0 个答案:

没有答案