0

我可以轻松地在 Google+ 中分享文字,但是当我想添加带有文字的图片时,我收到了这条消息;

您只能发布存储在设备中的媒体项目。

这是我的代码:

Uri uri = Uri.parse("android.resource://com.smurf.fapiao/" + R.drawable.myimage);


     // Launch the Google+ share dialog with attribution to your app.
     Intent shareIntent = new PlusShare.Builder(getActivity())
        .setType("image/png").setStream(uri)
        .setText(getString(R.string.social_googleplus_text) + " http://www.wangwanglotto.com")
        .getIntent();

    startActivityForResult(shareIntent, 0);

你有什么主意吗 ?我试图将文件放在 raw 或 assets 文件夹中,但我仍然收到消息。

提前致谢

4

0 回答 0