Google+ アプリの ShareActivity を使用して共有する方法を次に示します。この 1 つの余分な手順を回避して、アプリの UI から直接投稿できるかどうかを知りたいですか? ありがとう。
Intent shareIntent = new PlusShare.Builder(this).setType("image/jpeg")
.setText(status.getText().toString())
.setContentUrl(Uri.parse("https://developers.google.com/+/"))
.setStream(Uri.fromFile(image))
.getIntent()
.setPackage("com.google.android.apps.plus");
startActivityForResult(shareIntent, 0);