我正在尝试将一些文字发布到社区
我看到很多教程要分享文字到个人资料
有人可以向我建议我如何将文字发布到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);
提前感谢
答案 0 :(得分: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