Search code examples
androidmms

Sending MMS using httpConnection (Android 2.1)


i am trying to send MMS using code sample from here. I am not sure I understand how to deal with MMSPart part and parts vars: where and how should they be filled?

Thanks in advance


Solution

  • MMSPart is internal class for keeping data. Checkout this example:

    Declaration:

    class MMSPart {
    public String Name = "";
    public String MimeType = "";
    public byte[] Data;
    }
    

    Example:

    ...
    final MMSPart samplePart = new MMSPart();
    samplePart.Name = "sample";
    samplePart.MimeType = "text/html"
    samplePart.Data = "<b>Hello !</b>".getBytes();
    ...