我正在寻找一个我的谷歌加应用程序被禁用的场景,我需要在谷歌加上分享图像。请建议怎么做?
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文档中找到此代码,但如果应用已停用,则无效。