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.

I am using the following code:

Intent i = new Intent(Intent.ACTION_SEND);
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
i.setType("image/*");
i.putExtra(Intent.EXTRA_SUBJECT, "caption");
i.putExtra(Intent.EXTRA_STREAM, Uri.parse("file:///android_assets/html5_low.jpg"));
i.putExtra(Intent.EXTRA_TEXT, "caption");
i.putExtra("sms_body", "caption");
startActivity(Intent.createChooser(i , "Share"));

However, it will show an error, something like "error occured while loading the photo". Why could this be? Has anyone seen this problem? Please help me!

share|improve this question
Could you post the LogCat message for the error? I have a feeling that it might be related to that you are sending a URI to a file in the assets folder, but could use some more info. – TofferJ May 11 '11 at 14:06
What's the path to the image on your device? Is it in the apps assets folder? Or sdcard? And does it actually exist at all at the given location? – Mathias Lin May 11 '11 at 16:50
Replace your path with "file:///android_asset/html5_low.jpg" – andriod_testing Jan 31 '12 at 5:30

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.