3
        //Share image to all
        share = (Button)findViewById(R.id.facebook_app_id);
        share.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {

                Uri imageUri = Uri.parse("android.resource://" + getPackageName() +"/drawable/"+imageRes);
                Intent intent = new Intent(Intent.ACTION_SEND);
                intent.setType("image/*");

                intent.putExtra(Intent.EXTRA_STREAM, imageUri);
                intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
                startActivity(Intent.createChooser(intent , "Share"));


            }

        });

我正在尝试构建一个照片共享应用程序。Facebook、Messenger、Skype 完美运行,但Whatsapp 和 Viber显示错误 ( The file format is not supported)

4

4 回答 4

2

这是一个如何执行此操作的示例:

public void shareImageWhatsApp() {

    Bitmap adv = BitmapFactory.decodeResource(getResources(), R.drawable.adv);
    Intent share = new Intent(Intent.ACTION_SEND);
    share.setType("image/jpeg");
    ByteArrayOutputStream bytes = new ByteArrayOutputStream();
    adv.compress(Bitmap.CompressFormat.JPEG, 100, bytes);
    File f = new File(Environment.getExternalStorageDirectory()
            + File.separator + "temporary_file.jpg");
    try {
        f.createNewFile();
        new FileOutputStream(f).write(bytes.toByteArray());
    } catch (IOException e) {
        e.printStackTrace();
    }
    share.putExtra(Intent.EXTRA_STREAM,
            Uri.parse( Environment.getExternalStorageDirectory()+ File.separator+"temporary_file.jpg"));
    if(isPackageInstalled("com.whatsapp",this)){
          share.setPackage("com.whatsapp"); 
          startActivity(Intent.createChooser(share, "Share Image"));

    }else{

        Toast.makeText(getApplicationContext(), "Please Install Whatsapp", Toast.LENGTH_LONG).show();
    }

}

private boolean isPackageInstalled(String packagename, Context context) {
    PackageManager pm = context.getPackageManager();
    try {
        pm.getPackageInfo(packagename, PackageManager.GET_ACTIVITIES);
        return true;
    } catch (NameNotFoundException e) {
        return false;
    }
}
于 2017-04-27T12:17:34.857 回答
2

尝试将共享 Intent 中的内容类型设置为image/png。正如您上面所说,这可能适用于所有应用程序,也可能不适用于所有应用程序。

原因是您不能直接从您的应用程序内部存储中共享 uri(当然您的应用程序的资源将始终在内部存储中)

有两种方法可以实现这一点..

将您的图像复制到外部存储,然后从那里共享。看到这个

编写一个内容提供程序来共享图像。为此,请参阅从内部存储创建和共享文件

于 2017-04-27T12:09:35.360 回答
0

我不确定,但您可以使用 .jpeg 或 png 之类的扩展名检查 imageRes,例如 android.resource://" + getPackageName() +"/drawable/"+"imageRes.jpg"

于 2017-04-27T12:02:11.390 回答
0

尝试这个:

 Bitmap bitmap = BitmapFactory.decodeResource(getResources(),R.drawable.ic_launcher_round);
    ByteArrayOutputStream bos = new ByteArrayOutputStream();
    bitmap.compress(Bitmap.CompressFormat.PNG, 100, bos);
    Intent intent = new Intent(Intent.ACTION_SEND);
    intent.setType("image/*");
    String path = MediaStore.Images.Media.insertImage(context.getContentResolver(), bitmap, "ic_launcher_round", null);
    Uri imageUri = Uri.parse(path);
    intent.putExtra(Intent.EXTRA_STREAM, imageUri);
    intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
    startActivity(Intent.createChooser(intent , "Share"));

在执行此代码之前,请确保您必须授予 EXTERNAL_STORAGE 权限并且目标和编译 sdk 高于 lolipop 然后您必须请求权限

于 2017-04-27T12:47:41.683 回答