Welcome, guest! Login / Register - Why register?
Psst.. new poll here.
Psst.. new forums here.

Paste

Pasted as Java by furqi ( 13 years ago )
Intent sendIntent = new Intent(Intent.ACTION_SEND);
          sendIntent.setType("video/3gp");
          sendIntent.putExtra(Intent.EXTRA_SUBJECT, "Video");
//         sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://mnt/sdcard/dcim/100MEDIA/VIDEO0006.3gp"));
          sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file//"+Environment.getExternalStorageDirectory()+"/DCIM/100MEDIA/VIDEO0006.3gp"));
          sendIntent.putExtra(Intent.EXTRA_TEXT, "Enjoy the Video");
          startActivity(Intent.createChooser(sendIntent, "Email:"));

 

Revise this Paste

Your Name: Code Language: