Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法通过 OAuth 为网页 +1 或在 Google+ 上分享?(我正在创建一个移动 Web 应用程序,我使用默认按钮的问题是它们可能会创建一个弹出窗口,这对移动 Web 应用程序不利!)
您可以使用 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);