0

成功发送带有多张图片的彩信:

按照这些步骤 发送彩信并在 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,然后将新图像字节覆盖到前一个图像。

如何在单个彩信中保存多个图像。

4

2 回答 2

0

更新找到解决方案:

将多个图像保存在 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");


            for (int i = 0; i < sentMMS2.size(); i++) {
                // Add data to part
            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());
                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;
        }
于 2016-01-06T10:19:28.233 回答
-1

这可能会对您有所帮助,本教程演示了如何从 SD 卡发送多个图像。

https://www.youtube.com/watch?v=55hRGBJ1-2E

于 2016-01-06T08:41:52.617 回答