我们可以使用 ACTION_SEND 打开共享对话框来共享文本
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "Download Link: Android play store link");
sendIntent.setType("text/plain");
startActivity(Intent.createChooser(sendIntent, "Share This App"));
如何使用 ACTION_SEND 共享文本文件。
我阅读 了http://developer.android.com/training/sharing/send.html 但无法获得如何共享文本文件。