tags:

views:

302

answers:

3

Hi,

We are developing an app that will need to capture camera image and send it via MMS. (large or small image please)

Based on a method invocation in another activity, take an image and send it via MMS

This is one of the last two parts left for us.

Thanks a milion.

Mat

+1  A: 

Your statement says you are developing the application, not us.

Have you done anything? What approaches have you tried that led you to come here?

Christopher
+1  A: 

You need to use an intent, a quick example of sending an MMS via an intent can be found here.

Laurence Dawson
Another example:http://snipplr.com/view/13771/send-image-via-gmail-or-mms-on-android/
Laurence Dawson
A: 

Hi,

Thanks for the quick response. I have searched the web for an answer to my question and it seems no one ever wrote a good answer to my question.

I simply need to...

1) take a picture in the background with out a shutter. 2) save it 3) send it via MMS with image...

I have some ideas and have seen snippets of camera, but they all have shutter and need user interactions.

I also have not seen MMS with attachments. The link Laurence Dawson recommended may be incomplete. Which address does it send it to? and what is the url pointing to?

Thanks again for all you help.

Mat

Yassin
Try out the code for yourself to see what it does. As you may know.. the stock Android messaging app allows you to send MMS with a camera photo attached. Check out the source for yourself here: http://android.git.kernel.org/?p=platform/packages/apps/Mms.git;a=tree
Christopher
Why do you not want the shutter? I'm not sure you can take a picture without using the camera intent...
Laurence Dawson