0

Is there any way to +1 a web page or Share on Google+ with OAuth? (I'm creating a mobile web application, and my problem with using default buttons is they may create a popup window, which is not good for mobile web application!)

4

1 に答える 1

0

ACTION_SEND を使用して、Google+ 共有ダイアログを起動できます。

Intent shareIntent = ShareCompat.IntentBuilder.from(MyActivity.this)
   .setText("Hello World!")
   .setType("text/plain")
   .getIntent()
   .setPackage("com.google.android.apps.plus");

startActivity(shareIntent);
于 2012-07-28T18:54:12.613 に答える