有没有办法+1网页或在OAuth上分享? (我正在创建一个移动Web应用程序,我使用默认按钮的问题是它们可能会创建一个弹出窗口,这对移动Web应用程序不利!)
答案 0 :(得分: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);