我在我的应用程序中使用 Google+。我可以使用以下代码共享内容
Intent shareIntent = new PlusShare.Builder(ViewGooglePlus.this)
.setText("Android Testing for Google+")
.setType("text/plain")
.setContentUrl(
Uri.parse("http://androidsolution4u.blogspot.in/"))
.getIntent()
.setPackage("com.google.android.apps.plus");
startActivityForResult(shareIntent, 0);
但它仅在设备上安装了官方 Google+ 客户端时才有效。
无论设备中是否安装了官方 Google+ 客户端,我都想分享内容。
可能吗?有人有想法吗?如果是,怎么做?