How to attach video files to my application, and how to show videos in videos? Any ideas about sending an SMS with an attached video file meaning (MMS) in Android? If possible, can any body give me sample code about it?
send intent to sign = new intent (intent.ACTION_SEND); SendIntent.putExtra ("sms_body", "some text"); SendIntent.putExtra (Intent.EXTRA_STREAM, Uri.parse (url)); SendIntent.setType ("video / mpeg"); This is all you need only
Comments
Post a Comment