【发布时间】:2014-03-06 11:11:52
【问题描述】:
如何通过google plus在android中分享,请发送代码和详细信息。
Intent gplus = ShareCompat.IntentBuilder.from(MainActivity.this)
.setText("This site has lots of great information about Android!http://www.android.com")
.setType("text/plain")
.getIntent()
.setPackage("com.google.android.apps.plus");
startActivity(gplus);
我尝试使用上面的代码通过 google plus 在 android 中执行共享..但是当我运行此代码时我的应用程序崩溃了...请帮助我执行..
【问题讨论】:
标签: android android-intent android-listview android-fragments