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