无法在Google + Android上分享图片

时间:2015-10-06 20:22:10

标签: android google-api google-plus share android-resources

我正在尝试使用此代码与google +分享带描述的图片:

iv = (ImageView) findViewById(R.id.iv);

    Uri image = Uri.parse("android.resource://com.ahmed.mostafa.testgplus/"
            + R.drawable.ic_launcher);
    iv.setImageURI(image);

     PlusShare.Builder share = new PlusShare.Builder(this);
     share.setText("Hi G+");
     share.setType("image/jpeg");
     share.addStream(image);


     startActivityForResult(share.getIntent(), 0);

ImageView iv显示图像。但是,当Google+对话框显示说明时,"嗨G +"出现,但图像不是。

我的代码出了什么问题。我是从Here

获得的

1 个答案:

答案 0 :(得分:1)

Google+显然不支持android.resource计划。这是一个相当不受欢迎的计划,许多应用程序都不支持它。通过其他方式分享您的内容(例如,FileProvidercontent://方案,或外部存储和file://方案上的文件。