如果禁用Google Plus应用,请分享google plus android

时间:2015-02-11 08:50:04

标签: android google-plus share

我正在寻找一个我的谷歌加应用程序被禁用的场景,我需要在谷歌加上分享图像。请建议怎么做?

    try{
        PlusShare.Builder share = new PlusShare.Builder(this);
        share.setText("Just testing about the things of google play");
        Uri uri = Uri.fromFile(imageFile);
        share.setStream(uri);
        share.setType("image/*");
        startActivityForResult(share.getIntent(), 0);
    }catch(Exception e){
        e.printStackTrace();
        Util.showToast(this, "Please install Google Plus to share with");
    }

已在google plus文档中找到此代码,但如果应用已停用,则无效。

0 个答案:

没有答案