【发布时间】:2013-10-11 09:42:49
【问题描述】:
嘿,我正在尝试将 ling 与图像分享到用户的 google+ 供稿,所以我正在使用 PlusShare:
Intent shareIntent = new PlusShare.Builder(v.getContext())
.setType("text/plain")
.setText("Some text")
.setContentUrl("http://example.com/images/image.png")
.getIntent();
startActivityForResult(shareIntent, 0);
我的问题是附加到帖子的图片不是我的http://example.com/images/image.png,而是根页面上的一些图片http://example.com
【问题讨论】:
标签: android google-api google-plus