How to Attach video file to my application , and how to show video in videoview ? have any idea about send sms with attached videofile means(mms) in android? if possible , any body give me the Sample code about it??
A:
Try looking here: http://stackoverflow.com/questions/2972845/i-want-send-image-through-using-mms-in-android/ Your task should be similar
Asahi
2010-07-19 13:45:50
A:
Intent sendIntent = new Intent(Intent.ACTION_SEND);
sendIntent.putExtra("sms_body", "some text");
sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(url));
sendIntent.setType("video/mpeg");
That should be all you need.
ryangavin
2010-07-19 13:51:41