[android-developers] Re: How can I pass a file created in my activity to another activity

2009-06-27 Thread silverburgh
On Sat, Jun 27, 2009 at 3:58 PM, Mark Murphy wrote: > > silverburgh wrote: >> On Fri, Jun 26, 2009 at 5:29 PM, Mark Murphy wrote: >>> silverburgh wrote: I create a local file in my activity like this: File f = getFileStreamPath("mypicture"); How can I pass the URI of this

[android-developers] Re: How can I pass a file created in my activity to another activity

2009-06-27 Thread Mark Murphy
silverburgh wrote: > On Fri, Jun 26, 2009 at 5:29 PM, Mark Murphy wrote: >> silverburgh wrote: >>> I create a local file in my activity like this: >>> >>> File f = getFileStreamPath("mypicture"); >>> >>> How can I pass the URI of this file to another Activity? >> If the other activity is one in yo

[android-developers] Re: How can I pass a file created in my activity to another activity

2009-06-27 Thread silverburgh
On Fri, Jun 26, 2009 at 5:29 PM, Mark Murphy wrote: > > silverburgh wrote: >> I create a local file in my activity like this: >> >> File f = getFileStreamPath("mypicture"); >> >> How can I pass the URI of this file to another Activity? > > If the other activity is one in your application, just tel

[android-developers] Re: How can I pass a file created in my activity to another activity

2009-06-26 Thread Mark Murphy
silverburgh wrote: > I create a local file in my activity like this: > > File f = getFileStreamPath("mypicture"); > > How can I pass the URI of this file to another Activity? If the other activity is one in your application, just tell it the path from the File object, or the relative path you s