android共享意图只有谷歌驱动器

时间:2013-10-13 14:06:26

标签: android android-intent share

我已经设定了共享图像和标题的共享意图,但它只是针对谷歌驱动器,我不明白为什么..这里是代码:

Intent shareCaptionIntent = new Intent(Intent.ACTION_SEND);
                shareCaptionIntent.setType("image/*");

                //set photo
                Uri examplePhoto = Uri.fromFile(getExternalFilesDir(filepath[position]));
                shareCaptionIntent.setData(examplePhoto);
                shareCaptionIntent.putExtra(Intent.EXTRA_STREAM, examplePhoto);

                //set caption
                shareCaptionIntent.putExtra(Intent.EXTRA_TITLE, modelname);
                startActivity(Intent.createChooser(shareCaptionIntent,"share using:"));

0 个答案:

没有答案