Google+ 是否支持从 Android 应用共享?我想知道,因为我已经在我的应用程序上为 twitter 和 facebook 实现了这个,并且想为 Google+ 做同样的事情。我确实读到他们现在有一个 API,但它仅用于开发和测试,并且无法发布应用程序。它是否正确?
问问题
1165 次
2 回答
5
Google+ Android API 可以在这里找到:https ://developers.google.com/+/mobile/android/
在 Google+ 上分享的代码片段在该页面下方https://developers.google.com/+/mobile/android/#share_on_google:
例如,在您的 XML 中:
<Button
android:id="@+id/share_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Share on Google+" />
在您的活动中:
Button shareButton = (Button) findViewById(R.id.share_button);
shareButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// Launch the Google+ share dialog with attribution to your app.
Intent shareIntent = ShareCompat.IntentBuilder.from(ExampleActivity.this)
.setType("text/plain")
.setText("Welcome to the Google+ platform. https://developers.google.com/+")
.getIntent()
.setPackage("com.google.android.apps.plus");
startActivity(shareIntent);
}
});
于 2012-10-01T14:46:04.667 回答
0
于 2012-10-01T14:43:18.343 回答