我想尝试使用Android Google plus中的内容分享图片(来自Url),我正在尝试...
Intent shareIntent = new PlusShare.Builder(getActivity())
.setType("text/plain")
.setText("Check Trending Google Plus Login Integration Post From Androidlift")
.setContentUrl(Uri.parse("http://androidlift.info/2016/12/28/android-google-plus-login-integration-signin-example/"))
.getIntent();
startActivityForResult(shareIntent, 0);