Can someone help me understand why the attachment never shows up
when I do this:


   Intent intent = new Intent(Intent.ACTION_SEND);
        intent.putExtra(Intent.EXTRA_SUBJECT, "Test single
attachment");
        intent.putExtra(Intent.EXTRA_EMAIL, new String[]
{"[email protected]"});
        intent.putExtra(Intent.EXTRA_TEXT, "Mail with an attachment");

        intent.putExtra(Intent.EXTRA_STREAM,

                        
Uri.parse("http://sites.google.com/site/coolfonne/_/rsrc/
1294092731055/home/coolfone.bmp?height=320&width=259")


        );
        intent.setType("text/plain");

        startActivity(intent);

-- 
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

Reply via email to