Текст Android Post в сообществе Google plus

Я пытаюсь опубликовать текст в сообществе

я видел много учебников, чтобы поделиться текстом в профиле

Может ли кто-нибудь дать мне предложение, как я могу опубликовать текст в сообществе 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);

Заранее спасибо


person ShreeshaDas    schedule 12.03.2014    source источник


Ответы (1)


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

startActivityForResult(shareIntent, 0);

Ссылка : https://developers.google.com/+/mobile/android/share/prefill

person Irfan Raza    schedule 24.09.2015