我可以使用以下代码从可绘制文件夹中获取图像。我也可以发送电子邮件。但问题是图像的格式是文件,我无法在我的安卓设备中打开它。我怎样才能将其转换为任何图像格式,如 png、jpg 等。
intent.putExtra(Intent.EXTRA_STREAM, Uri.parse("android.resource://" + "com.example.jithu"+ "/" +imageAdapter.mThumbIds[position]));
检查扩展名是否已附加到映像。尝试以下代码:
intent.putExtra(Intent.EXTRA_STREAM, Uri.parse("android.resource://" + "com.example.jithu"+ "/" +imageAdapter.mThumbIds[position]) + ".jpg");
intent.setType("image/jpeg"); // attachment is a jpeg