以下是我使用 Google+ 应用的 ShareActivity 进行分享的方式。我想知道我是否可以避免这一额外步骤并直接从我的应用程序的 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);