成功发送带有多张图片的彩信:
按照这些步骤 发送彩信并在 andorid 数据库中添加图像。
问题:我在 1 mms 中有 3 个图像并且不知道如何将它们全部保存在 android 数据库中的单个 MMS 中。
我已经尝试通过修改给定参考中的方法来将多个图像保存在单个 MMS 中。
private static Uri createPart(Context context, String id,
ArrayList<SentMMSVo> sentMMS2) throws Exception {
ContentValues mmsPartValue = new ContentValues();
mmsPartValue.put("mid", id);
mmsPartValue.put("ct", "image/png");
mmsPartValue.put("cid", "<" + System.currentTimeMillis() + ">");
Uri partUri = Uri.parse("content://mms/" + id + "/part");
Uri res = context.getContentResolver().insert(partUri, mmsPartValue);
Log.e(">>>>>>>", "Part uri is " + res.toString());
for (int i = 0; i < sentMMS2.size(); i++) {
// Add data to part
OutputStream os = context.getContentResolver()
.openOutputStream(res);
ByteArrayInputStream is = new ByteArrayInputStream(sentMMS2.get(i)
.getData());
byte[] buffer = new byte[256];
for (int len = 0; (len = is.read(buffer)) != -1;) {
os.write(buffer, 0, len);
}
os.close();
is.close();
}
return res;
}
此方法将保存单个图像。它保存图像 1,然后将新图像字节覆盖到前一个图像。
如何在单个彩信中保存多个图像。