0

我可以使用以下代码从可绘制文件夹中获取图像。我也可以发送电子邮件。但问题是图像的格式是文件,我无法在我的 android 设备中打开它。如何将其转换为任何图像格式,如 png、jpg 等。

  intent.putExtra(Intent.EXTRA_STREAM, Uri.parse("android.resource://" + "com.example.jithu"+ "/" +imageAdapter.mThumbIds[position]));
4

1 回答 1

0

检查扩展是否附加到图像。试试下面的代码:

intent.putExtra(Intent.EXTRA_STREAM, Uri.parse("android.resource://" + "com.example.jithu"+ "/" +imageAdapter.mThumbIds[position]) + ".jpg");
intent.setType("image/jpeg");  // attachment is a jpeg
于 2013-01-30T13:08:12.363 回答