gpt4 book ai didi

android - 从 Android 分享到 Google+

转载 作者:行者123 更新时间:2023-11-29 15:26:15 26 4
gpt4 key购买 nike

Google+ 是否支持从 Android 应用分享内容?我想知道,因为我已经在我的应用程序上为 Twitter 和 Facebook 实现了这个,并且想为 Google+ 做同样的事情。我确实读到他们现在有一个 API,但它仅用于开发和测试,不能发布应用程序。这是正确的吗?

最佳答案

例如,在您的 XML 中:

<Button
android:id="@+id/share_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Share on Google+" />

在您的 Activity 中:

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);
}
});

关于android - 从 Android 分享到 Google+,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12675105/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com