Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi i am making an app in which i am dynamically getting the image from server and i want to give user the option to mail that image. I am using following code but i dont how to set path of image in below code.

 Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
  emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,getResources().getString(R.string.emlSendToFriendSubject));
  emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL,new String[]{emailto});
  emailIntent.setType("text/plain");
  emailIntent.putExtra(android.content.Intent.EXTRA_TEXT,getResources().getString(R.string.emlSendToFriendBody));
  File file = getFileStreamPath(EMAIL_TEMP_FILE);
 emailIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
 emailIntent.setType("image/jpeg");
 emailIntent.putExtra(Intent.EXTRA_STREAM,Uri.parse("file://"+file.getAbsolutePath()));
 startActivityForResult(Intent.createChooser(emailIntent,getResources().getString(R.string.btnSendToFriend)),ActMain.EMAIL_DONE);
share|improve this question

1 Answer

You set the path to the image in this line:

emailIntent.putExtra(Intent.EXTRA_STREAM,Uri.parse("file://"+file.getAbsolutePath()));

, where file is the image you want to send.

Also, note that the second call to setType will override the effects of the first call you made.

share|improve this answer
1  
Can you please elobrate about settype and i just have to write the image url in file? – user775 Mar 13 '12 at 9:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.