我正在使用此代码在 google+ 上分享:
ShareCompat.IntentBuilder builder = ShareCompat.IntentBuilder.from(activity);
builder.setType("text/plain");
builder.setText(text);
if (imageURI != null) {
builder.setStream(imageURI)
.setType("image/png");
}
Intent shareIntent = builder.getIntent()
.setPackage("com.google.android.apps.plus");
activity.startActivity(shareIntent);
如果有图像 - 它共享没有文本的图像,如果没有图像 - 它成功共享文本。如何将文本和图像一起发布?