0
我会分享对谷歌加不加应用程序被安装在移动phone.I刚刚看到这个解决方案后:如何在Google Plus上分享信息?
Intent shareIntent=new Intent(Intent.ACTION_SEND);
shareIntent.setType("text/plain");
shareIntent.putExtra(Intent.EXTRA_TEXT,"your text here");
shareIntent.putExtra(Intent.EXTRA_SUBJECT, "post title");
startActivity(Intent.createChooser(shareIntent, "Share..."));
但是这种解决方案的工作,如果在手机上没有安装谷歌的应用加。 我想我可以分享没有应用程序。任何人都可以建议我如何做到这一点?
没有谷歌加应用程序,你不能共享。 – Tarun
因此,当应用程序必须在Google +上共享帖子时,总会在手机中安装谷歌加应用程序? – francedema