我正在尝试将一些文本发布到社区
我看到很多教程来分享文本到个人资料
有人可以给我建议如何将文本发布到 Google plus 社区
我试过这样
Intent intent = new Intent(Intent.ACTION_VIEW);
Intent shareIntent = ShareCompat.IntentBuilder.from(MainActivity.this)
.setType("text/plain")
.setText(vo)
.getIntent()
.setPackage("com.google.android.apps.plus")
.setClassName("com.google.android.apps.plus",
"com.google.android.apps.plus.phone.UrlGatewayActivity")
.putExtra("customAppUri",
"https://plus.google.com/communities/107139874057758406172");
startActivity(shareIntent);
提前致谢