2

我正在尝试将一些文本发布到社区

我看到很多教程来分享文本到个人资料

有人可以给我建议如何将文本发布到 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);

提前致谢

4

1 回答 1

0
Intent shareIntent = new PlusShare.Builder(this)
  .setType("text/plain")
  .setText("Heard about this restaurant from +109813896768294978296. Check out the menu +friendnotonplus@example.com")
  .setContentUrl(Uri.parse("https://developers.google.com/+/web/snippet/examples/restaurant"))
  .getIntent();

startActivityForResult(shareIntent, 0);

参考:https ://developers.google.com/+/mobile/android/share/prefill

于 2015-09-24T11:22:40.443 回答