コミュニティにテキストを投稿しようとしています
テキストをプロファイルに共有するためのチュートリアルをたくさん見ました
Google プラス コミュニティにテキストを投稿する方法を教えてください。
私はこのようにしてみました
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);
前もって感謝します