我想在Android平台上通过Google Plus分享来自服务器的图片。我使用了以下代码:
Intent shareIntent = new PlusShare.Builder(this)
.setType("text/plain")
.setText("Welcome to the Google+ platform.")
.setContentUrl(Uri.parse("https://developers.google.com/+/"))
.getIntent();
一切正常,但我不想在帖子中显示网址链接。