我可以轻松地在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文件夹中,但我仍然收到消息。
提前致谢