嗨,我想共享默认内容以及用户要共享的文本:

    Intent sendIntent = new Intent();
    sendIntent.setAction(Intent.ACTION_SEND);
    sendIntent.putExtra(Intent.EXTRA_TEXT, " - You're using App v. 10.2");
    sendIntent.setType("text/plain");
    startActivity(sendIntent);



我想要的是这样的:
此处的用户文字
-您使用的是App v.1.0.2

我怎样才能做到这一点?谢谢

最佳答案

请检查此代码。效果很好。

Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.setType("*/*");
shareIntent.putExtra(Intent.EXTRA_TEXT, "Body text of the new status");
startActivity(Intent.createChooser(shareIntent, "Share image using"));

关于android - 如何在具有默认文本的android中制作共享文本内容,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14211187/

10-08 22:58