我想将资源/可绘制文件夹中的图像附加到彩信。是否可以将可绘制文件夹中的图像附加到彩信。如果是,请在此处提供一些代码。我尝试了很多,也在这里找到了很多在谷歌上,但仍然无法获得正确的解决方案。请有人帮我解决这个问题。在此先感谢。我的代码如下:
Intent sendIntent = new Intent(Intent.ACTION_SEND);
sendIntent.setType("image/png");
sendIntent.putExtra("sms_body",
getResources().getText(R.string.Message));
File f = new File(Environment.getExternalStorageDirectory()
.getAbsolutePath(), "koala.jpg");
Uri uri = Uri.fromFile(f);
sendIntent.putExtra(Intent.EXTRA_STREAM, uri);
startActivity(Intent.createChooser(sendIntent, ""));