Okay, I really have no idea what I have to do:
I tried to create the file:// but nothing I try seems to work... :(((
Intent sendIntent = new Intent(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new
File(videocursor.getString(0))));
sendIntent.setType("video/3gp");
sendIntent.setType("video/mp4");
startActivity(Intent.createChooser(sendIntent, "Email:"));
On Tue, Jul 20, 2010 at 4:56 PM, DanH <[email protected]> wrote:
> Uri.parse() returns a Uri. I'm guessing you misinterpreted the second
> message.
>
> On Jul 20, 7:39 am, Victoria Busse <[email protected]>
> wrote:
> > I was trying to use sendIntent.putExtra(Intent.EXTRA_STREAM,
> > Uri.fromFile(new File(uri)));
> >
> > but then I get an eclipse error saying that I should change String vuri =
> > Uri.parse(videocursor.getString(0)); into an uri because of a type
> mismatch,
> > when I do that eclipse says I should change it back into a String...
> >
> > On Tue, Jul 20, 2010 at 1:21 PM, DanH <[email protected]> wrote:
> > > Well, I can tell you it's looking for the file /sdcard/Video0006.mp4
> > > and not finding it.
> >
> > > On Jul 20, 4:34 am, kivy <[email protected]> wrote:
> > > > Hi everyone,
> >
> > > > when I try to attach a file to an email, I get a
> > > > java.io.FileNotFoundException: No content provider logcat output. If
> > > > anyone could tell me what I am doing wrong or what I should do
> > > > instead, that would be great.Thank you.
> >
> > > > This is how I add the files to the email..:
> >
> > > > Intent sendIntent = new Intent(Intent.ACTION_SEND);
> > > > sendIntent.putExtra(Intent.EXTRA_STREAM, uri);
> > > > sendIntent.setType("video/3gp");
> > > > sendIntent.setType("video/mp4");
> > > > startActivity(sendIntent);
> >
> > > > ...and here is the entire logcat error output:
> >
> > > > 20 09:15:58.364: ERROR/Mms/media(168): IOException caught while
> > > > opening or reading stream
> > > > 07-20 09:15:58.364: ERROR/Mms/media(168):
> > > > java.io.FileNotFoundException: No content provider: /sdcard/
> > > > Video0006.mp4
> > > > 07-20 09:15:58.364: ERROR/Mms/media(168): at
> >
> > >
> android.content.ContentResolver.openAssetFileDescriptor(ContentResolver.java:
> > > > 507)
> > > > 07-20 09:15:58.364: ERROR/Mms/media(168): at
> > > > android.content.ContentResolver.openInputStream(ContentResolver.java:
> > > > 345)
> > > > 07-20 09:15:58.364: ERROR/Mms/media(168): at
> > > > com.android.mms.model.MediaModel.initMediaSize(MediaModel.java:268)
> > > > 07-20 09:15:58.364: ERROR/Mms/media(168): at
> > > > com.android.mms.model.MediaModel.<init>(MediaModel.java:76)
> > > > 07-20 09:15:58.364: ERROR/Mms/media(168): at
> > > > com.android.mms.model.RegionMediaModel.<init>(RegionMediaModel.java:
> > > > 40)
> > > > 07-20 09:15:58.364: ERROR/Mms/media(168): at
> > > > com.android.mms.model.VideoModel.<init>(VideoModel.java:55)
> > > > 07-20 09:15:58.364: ERROR/Mms/media(168): at
> > > > com.android.mms.model.VideoModel.<init>(VideoModel.java:48)
> > > > 07-20 09:15:58.364: ERROR/Mms/media(168): at
> > > > com.android.mms.data.WorkingMessage.changeMedia(WorkingMessage.java:
> > > > 434)
> > > > 07-20 09:15:58.364: ERROR/Mms/media(168): at
> > > >
> com.android.mms.data.WorkingMessage.setAttachment(WorkingMessage.java:
> > > > 343)
> > > > 07-20 09:15:58.364: ERROR/Mms/media(168): at
> >
> > >
> com.android.mms.ui.ComposeMessageActivity.addVideo(ComposeMessageActivity.java:
> > > > 2472)
> > > > 07-20 09:15:58.364: ERROR/Mms/media(168): at
> >
> > >
> com.android.mms.ui.ComposeMessageActivity.addAttachment(ComposeMessageActivity.java:
> > > > 2544)
> > > > 07-20 09:15:58.364: ERROR/Mms/media(168): at
> >
> > >
> com.android.mms.ui.ComposeMessageActivity.handleSendIntent(ComposeMessageActivity.java:
> > > > 2521)
> > > > 07-20 09:15:58.364: ERROR/Mms/media(168): at
> >
> > >
> com.android.mms.ui.ComposeMessageActivity.initialize(ComposeMessageActivity.java:
> > > > 1703)
> > > > 07-20 09:15:58.364: ERROR/Mms/media(168): at
> >
> > >
> com.android.mms.ui.ComposeMessageActivity.onCreate(ComposeMessageActivity.java:
> > > > 1633)
> > > > 07-20 09:15:58.364: ERROR/Mms/media(168): at
> > > >
> android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:
> > > > 1047)
> > > > 07-20 09:15:58.364: ERROR/Mms/media(168): at
> > > > android.app.ActivityThread.performLaunchActivity(ActivityThread.java:
> > > > 2459)
> > > > 07-20 09:15:58.364: ERROR/Mms/media(168): at
> > > > android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:
> > > > 2512)
> > > > 07-20 09:15:58.364: ERROR/Mms/media(168): at
> > > > android.app.ActivityThread.access$2200(ActivityThread.java:119)
> > > > 07-20 09:15:58.364: ERROR/Mms/media(168): at
> > > > android.app.ActivityThread$H.handleMessage(ActivityThread.java:1863)
> > > > 07-20 09:15:58.364: ERROR/Mms/media(168): at
> > > > android.os.Handler.dispatchMessage(Handler.java:99)
> > > > 07-20 09:15:58.364: ERROR/Mms/media(168): at
> > > > android.os.Looper.loop(Looper.java:123)
> > > > 07-20 09:15:58.364: ERROR/Mms/media(168): at
> > > > android.app.ActivityThread.main(ActivityThread.java:4363)
> > > > 07-20 09:15:58.364: ERROR/Mms/media(168): at
> > > > java.lang.reflect.Method.invokeNative(Native Method)
> > > > 07-20 09:15:58.364: ERROR/Mms/media(168): at
> > > > java.lang.reflect.Method.invoke(Method.java:521)
> > > > 07-20 09:15:58.364: ERROR/Mms/media(168): at
> > > > com.android.internal.os.ZygoteInit
> > > > $MethodAndArgsCaller.run(ZygoteInit.java:860)
> > > > 07-20 09:15:58.364: ERROR/Mms/media(168): at
> > > > com.android.internal.os.ZygoteInit.main(ZygoteInit.java:618)
> > > > 07-20 09:15:58.364: ERROR/Mms/media(168): at
> > > > dalvik.system.NativeStart.main(Native Method)
> >
> > > --
> > > You received this message because you are subscribed to the Google
> > > Groups "Android Developers" group.
> > > To post to this group, send email to
> [email protected]
> > > To unsubscribe from this group, send email to
> > > [email protected]<android-developers%[email protected]>
> <android-developers%[email protected]<android-developers%[email protected]>
> >
> > > For more options, visit this group at
> > >http://groups.google.com/group/android-developers?hl=en
>
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to [email protected]
> To unsubscribe from this group, send email to
> [email protected]<android-developers%[email protected]>
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
>
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en